func prefix(Int) -> PrefixSequence<Self>
Returns a sequence, up to the specified maximum length, containing the initial elements of the sequence.
指定された最大長まで、そのシーケンスの冒頭の要素を含んでいる、あるシーケンスを返します。
func prefix(while: (Self.Element) -> Bool) -> [Self.Element]
Returns a sequence containing the initial, consecutive elements that satisfy the given predicate.
与えられた述部を満たす、冒頭の、隣接する要素を含んでいるあるシーケンスを返します。