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