mirror of
https://github.com/ghostty-org/ghostty.git
synced 2025-10-01 15:38:35 +00:00
6 lines
165 B
Swift
6 lines
165 B
Swift
extension Double {
|
|
func clamped(to range: ClosedRange<Double>) -> Double {
|
|
return Swift.min(Swift.max(self, range.lowerBound), range.upperBound)
|
|
}
|
|
}
|