The index at which to start the resulting subsequence. start must be a valid index of the collection.
それで結果の下位シーケンスが始まるインデックス。startはコレクションのひとつの有効なインデックスでなければなりません。
Return Value
戻り値
A subsequence starting at the start position.start位置から始まる下位シーケンス。
Discussion
解説
The following example searches for the index of the number 40 in an array of integers, and then prints the suffix of the array starting at that index:
以下の例は、整数からなる配列において数40のインデックスを捜して、それからそのインデックスで始まる配列の末尾を出力します。
Passing the collection’s endIndex as the start parameter results in an empty subsequence.
コレクションのendIndexをstartパラメータとして渡すことは、空のシーケンスという結果になります。
Using the suffix(from:) method is equivalent to using a partial range from the index as the collection’s subscript. The subscript notation is preferred over suffix(from:).suffix(from:)メソッドを使うことは、インデックスからの部分的範囲をコレクションのもつ添え字として使うことと同等です。添え字表記法は、suffix(from:)よりも好まれます。
Returns a subsequence, up to the specified maximum length, containing the initial elements of the collection.
下位シーケンスを、指定された最大長まで、コレクションの冒頭の要素を含めて返します。
Returns a subsequence containing the initial elements until predicate returns false and skipping the remaining elements.predicateがfalseを返すまで冒頭の要素を含んでいて残りの要素を飛ばしている、ある下位シーケンスを返します。