func split(maxSplits : Int, omittingEmptySubsequences : Bool, whereSeparator : (UInt8) -> Bool) -> [Data]
Returns the longest possible subsequences of the collection, in order, that don’t contain elements satisfying the given predicate.
与えられた述部を満たす要素を含んでいない、このコレクションの最も長くなりうる下位シーケンスそれらを順序どおりに返します。
func split(separator: UInt8, maxSplits : Int, omittingEmptySubsequences : Bool) -> [Data]
Returns the longest possible subsequences of the collection, in order, around elements equal to the given element.
与えられた要素と等しい要素を避けるようにして、このコレクションの最も長くなりうる下位シーケンスを、順番に返します。