Skip to content

Instantly share code, notes, and snippets.

@hhhello0507
Created March 25, 2025 12:45
Show Gist options
  • Save hhhello0507/93fff227a051286447e47505a1581e57 to your computer and use it in GitHub Desktop.
Save hhhello0507/93fff227a051286447e47505a1581e57 to your computer and use it in GitHub Desktop.
public extension Comparable {
func clamped(to limits: ClosedRange<Self>) -> Self {
return min(max(self, limits.lowerBound), limits.upperBound)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment