Skip to content

Instantly share code, notes, and snippets.

View vahan3x's full-sized avatar
💻
Available. Sometimes.

Vahan Babayan vahan3x

💻
Available. Sometimes.
View GitHub Profile
@vahan3x
vahan3x / Comparable+Additions.swift
Last active March 24, 2018 14:03
Useful extensions for Cocoa Touch frameworks
// Swift version: 4.0
public extension Comparable {
/// Returns a copy of the value clamped to the given limiting range.
///
/// Example:
///
/// let a = 50
/// print(a.clamped(to: 0 ... 10)) // prints 10