The number of elements to drop from the beginning of the collection. k must be greater than or equal to zero.
コレクションの始まりから省く要素の数。kは、ゼロより大きいまたは等しくなければなりません。
Return Value
戻り値
A subsequence starting after the specified number of elements.
指定された数の要素の後から始まる下位シーケンス。
Discussion
議論
If the number of elements to drop exceeds the number of elements in the collection, the result is an empty subsequence.
省かれることになる要素の数がコレクションの要素の数を超えるならば、結果は空の下位シーケンスになります。
Complexity: O(1) if the collection conforms to RandomAccessCollection; otherwise, O(k), where k is the number of elements to drop from the beginning of the collection.
計算量:O(1)、もしコレクションがRandomAccessCollectionに準拠するならば;そうでなければ、O(k)、ここでkはコレクションの冒頭から除外する要素の数です。
Returns a subsequence by skipping elements while predicate returns true and returning the remaining elements.predicateがtrueを返す間は要素を飛ばして残りの要素を返すことによって、ある下位シーケンスを返します。
Returns a new data buffer created by removing the given number of bytes from the front of the original buffer.
与えられたバイト数を元のバッファの先頭から取り除くことによって作成される新しいデータバッファを返します。