mirror of
https://github.com/yattee/yattee.git
synced 2025-03-14 12:31:27 +00:00
8 lines
168 B
Swift
8 lines
168 B
Swift
![]() |
import Foundation
|
||
|
|
||
|
extension Comparable {
|
||
|
func clamped(to limits: ClosedRange<Self>) -> Self {
|
||
|
min(max(self, limits.lowerBound), limits.upperBound)
|
||
|
}
|
||
|
}
|