Generic Function

min(_:_:)

Returns the lesser of two comparable values. 2つの比較可能な値のうちより小さいものを返します。

Declaration 宣言

func min<T>(_ x: T, _ y: T) -> T where T : Comparable

Parameters パラメータ

x

A value to compare. 比較する値。

y

Another value to compare. もう一方の比較する値。

Return Value 戻り値

The lesser of x and y. If x is equal to y, returns x. xyのうちより小さいもの。xyと等しいならば、xを返します。

See Also 参照

Choosing the Smallest and Largest Value 最小および最大値を選ぶ