func dropFirst (Int) -> DropFirstSequence<Self>
Returns a sequence containing all but the given number of initial elements.
指定された数の冒頭要素以外すべてを含んでいるあるシーケンスを返します。
func drop(while: (Self.Element) -> Bool) -> DropWhileSequence<Self>
Returns a sequence by skipping the initial, consecutive elements that satisfy the given predicate.
与えられた述部を満たす、冒頭の、隣接する要素を飛ばすことによるあるシーケンスを返します。
func filter((Self.Element) -> Bool) -> [Self.Element]
Returns an array containing, in order, the elements of the sequence that satisfy the given predicate.
指定された述部を満足させるものであるシーケンスの要素を、順序通りに、含んでいる配列を返します。