-
-
Save Shilo/bd463c155b312a8d9230962d04a80e93 to your computer and use it in GitHub Desktop.
clamp() in Swift
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
///Returns the input value clamped to the lower and upper limits. | |
func clamp<T: Comparable>(value: T, lower: T, upper: T) -> T { | |
return min(max(value, lower), upper) | |
} | |
//----------------------------------------------- | |
// Example usage | |
let proposedIndex = 6 | |
let i = clamp(proposedIndex, 0, 5) | |
// What clamp() replaces | |
func getIndex(proposedIndex: Int) -> Int { | |
if proposedIndex < 0 { | |
return 0 | |
} | |
else if proposedIndex <= 5 { | |
return proposedIndex | |
} | |
else { | |
return 5 | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment