Generic 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 >= <A, B>(lhs: (A, B), rhs: (A, B)) -> Bool where A : Comparable, B : Comparable

Parameters パラメータ

lhs

A tuple of Comparable elements. Comparable要素からなるタプル。

rhs

Another tuple of elements of the same type as lhs. lhsと同じ型の要素からなる別のタプル。

Discussion 解説

Given two tuples (a1, a2, ..., aN) and (b1, b2, ..., bN), the first tuple is after or the same as the second tuple if and only if a1 > b1 or (a1 == b1 and (a2, ..., aN) >= (b2, ..., bN)). 2つのタプル(a1, a2, ..., aN)(b1, b2, ..., bN)を与えられて、最初のタプルが2番目のタブルより後かそれと同じであるのは、a1 > b1または(a1 == b1および(a2, ..., aN) >= (b2, ..., bN))である場合に限ります。

See Also 参照

Tuple Comparison タプル比較