Operator 演算子

>=(_:_:)

Returns a Boolean value indicating whether the first tuple is ordered after or the same as the second in a lexicographical ordering. 語彙筆記的順序において最初のタプルが2番目の後ろまたはそれと同じ順序かかどうかを指し示しているブール値を返します。

Declaration 宣言

func >= (lhs: (), rhs: ()) -> Bool

Parameters パラメータ

lhs

An empty tuple. 空のタプル。

rhs

An empty tuple. 空のタプル。

Discussion 解説

An arity zero tuple is always after or the same as another arity zero tuple in a lexicographical ordering. 項数ゼロのタプルは、常に語彙筆記的順序において別の項数ゼロのタプルの後またはそれと同じです。

See Also 参照

Tuple Comparison タプル比較