Operator 演算子

>(_:_:)

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

Declaration 宣言

static func > (lhs: Date, rhs: Date) -> Bool

Parameters パラメータ

lhs

A value to compare. 比較する値。

rhs

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

Return Value 戻り値

true if lhs is greater than rhs; otherwise, false. trueを、lhsrhsより大きいならば返します;そうでなければ、false

Relationships 関係

From Protocol 由来プロトコル

See Also 参照

Comparing Dates 日付を比較する