FunctionSwift
min(_:_:)
Returns the lesser of two comparable values.
func min<T>(_ x: T, _ y: T) -> T where T : Comparable
Parameters
- x
A value to compare.
- y
Another value to compare.
Returns
The lesser of x
and y
. If x
is equal to y
, returns x
.