Generic Function

max(_:_:)

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

Declaration 宣言

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

Parameters パラメータ

x

A value to compare. 比較する値。

y

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

Return Value 戻り値

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

See Also 参照

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