min(_:_:_:_:)
Returns the least argument passed.
Declaration
func min<T>(_ x: T, _ y: T, _ z: T, _ rest: T...) -> T where T : ComparableParameters
- x:
A value to compare.
- y:
Another value to compare.
- z:
A third value to compare.
- rest:
Zero or more additional values.
Return Value
The least of all the arguments. If there are multiple equal least arguments, the result is the first one.