1
0
mirror of https://github.com/yattee/yattee.git synced 2025-01-09 19:10:32 +05:30
yattee/Extensions/Comparable+Clamped.swift
Arkadiusz Fal 0a36870480 Hello, mpv! 🎉
2022-02-26 12:21:49 +01:00

8 lines
168 B
Swift

import Foundation
extension Comparable {
func clamped(to limits: ClosedRange<Self>) -> Self {
min(max(self, limits.lowerBound), limits.upperBound)
}
}