Returns a Boolean value indicating whether the initial elements of the sequence are the same as the elements in another sequence.
シーケンスの最初の要素らが別のシーケンスの中の要素らと同じかどうかを指し示すブール値を返します。
A sequence to compare to this sequence.
あるシーケンス、このシーケンスと比べることになります。
Return Value
戻り値
true if the initial elements of the sequence are the same as the elements of possiblePrefix; otherwise, false. If possiblePrefix has no elements, the return value is true.
シーケンスの冒頭の要素がpossiblePrefixの要素と同じならばtrue;そうでなければfalse。possiblePrefixが1つも要素を持たないならば、戻り値はtrueです。
Discussion
議論
This example tests whether one countable range begins with the elements of another countable range.
この例は、ある可付番範囲が別の可付番範囲の要素で始まるかどうかテストします。
Passing a sequence with no elements or an empty collection as possiblePrefix always results in true.
1つの要素もないシーケンスまたは空のコレクションをpossiblePrefixとして渡すことは、常にtrueという結果になります。
Complexity: O(m), where m is the lesser of the length of the sequence and the length of possiblePrefix.
計算量:O(m)、ここでmはシーケンスの長さおよびpossiblePrefixの長さより少ないものです。
See Also
参照
Testing for Inclusion in the Range
範囲における包含についてテストする
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 the concatenated elements of this sequence of sequences, inserting the given separator between each element.
各要素の間に与えられた分離子を挿入して、これらシーケンスに属するシーケンスの要素それらを鎖状に連結して返します。
Returns a subsequence, up to the specified maximum length, containing the initial elements of the collection.
下位シーケンスを、指定された最大長まで、コレクションの冒頭の要素を含めて返します。
Returns the longest possible subsequences of the collection, in order, around elements equal to the given element.
与えられた要素と等しい要素を避けるようにして、このコレクションの最も長くなりうる下位シーケンスを、順番に返します。