Returns a Boolean value indicating whether the sequence precedes another sequence in a lexicographical (dictionary) ordering, using the less-than operator (<) to compare elements.
そのシーケンスが別のシーケンスの前に来るかどうかを、ある語彙筆記的順序(字典)順序において、より小さい演算子(<)を使って要素を比較して、指し示すブール値を返します。
Availability
有効性
iOS 7.0+
iPadOS 7.0+
macOS 10.9+
Mac Catalyst 13.0+
tvOS 9.0+
watchOS 2.0+
Xcode 8.3+
Technology
Foundation
ファウンデーション
Declaration
宣言
funclexicographicallyPrecedes<OtherSequence>(_other: OtherSequence) -> BoolwhereOtherSequence : Sequence, Int == OtherSequence.Element
Parameters
パラメータ
other
A sequence to compare to this sequence.
あるシーケンス、このシーケンスと比べることになります。
Return Value
戻り値
true if this sequence precedes other in a dictionary ordering; otherwise, false.
このシーケンスがotherに、ある字典順序において先行するならば、true;そうでなければ、false。
Discussion
議論
This example uses the lexicographicallyPrecedes method to test which array of integers comes first in a lexicographical ordering.
この例はlexicographicallyPrecedesメソッドを使って、どの整数配列がある語彙筆記的順序において最初に来るかをテストします。
Complexity: O(m), where m is the lesser of the length of the sequence and the length of other.
計算量:O(m)、ここでmはシーケンスの長さおよびotherの長さより少ないものです。
Returns a Boolean value indicating whether this sequence and another sequence contain the same elements in the same order.
このシーケンスともう一方のシーケンスが同じ要素を同じ順序で含むかどうかを指し示すブール値を返します。
Returns a sequence of pairs (n, x), where n represents a consecutive integer starting at zero and x represents an element of the sequence.
ペア (n, x) のシーケンスを返します、そこでnはゼロで開始する連続した数を表して、xはシーケンスの要素を表します。
Returns a subsequence, up to the specified maximum length, containing the initial elements of the collection.
下位シーケンスを、指定された最大長まで、コレクションの冒頭の要素を含めて返します。
Returns a Boolean value indicating whether the initial elements of the sequence are the same as the elements in another sequence.
シーケンスの最初の要素らが別のシーケンスの中の要素らと同じかどうかを指し示すブール値を返します。