Noobish1/WeatherRules

View on GitHub
App/Core/WhatToWearCore/Extensions/Foundation/Comparable.swift

Summary

Maintainability
A
0 mins
Test Coverage
import Foundation

// MARK: General
extension Comparable {
    public func clamped(to limits: ClosedRange<Self>) -> Self {
        return min(max(self, limits.lowerBound), limits.upperBound)
    }
}