Skip to content

Instantly share code, notes, and snippets.

@michaelevensen
Created December 5, 2019 08:43
Show Gist options
  • Save michaelevensen/d57f94381b833e13c6fad3cf0c7a7f28 to your computer and use it in GitHub Desktop.
Save michaelevensen/d57f94381b833e13c6fad3cf0c7a7f28 to your computer and use it in GitHub Desktop.
Awesome MinMax function.
func ensureRange<T>(value: T, minimum: T, maximum: T) -> T where T : Comparable {
return min(max(value, minimum), maximum)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment