Generic Operator

>(_:_:)

Returns a Boolean value indicating whether the value of the first argument is greater than that of the second argument. 最初の引数の値が2番目の引数のそれより大きいかどうかを指し示すブール値を返します。

Declaration 宣言

static func > <Other>(lhs: Int16, rhs: Other) -> Bool where Other : BinaryInteger

Parameters パラメータ

lhs

An integer to compare. 比較する整数。

rhs

Another integer to compare. 比較するもう一方の整数。

Discussion 解説

You can compare instances of any BinaryInteger types using the greater-than operator (>), even if the two instances are of different types. あなたは、何らかのBinaryInteger型のインスタンスをより大きい演算子(>)を使って比較できます、2つのインスタンスが異なる型であるとしてもです。