Type Alias

FlattenCollection.SubSequence

A collection representing a contiguous subrange of this collection’s elements. The subsequence shares indices with the original collection.

Declaration 宣言

typealias SubSequence = Slice<FlattenCollection<Base>>
Available when Base conforms to Collection and Base.Element conforms to Collection. BaseCollectionに準拠するそしてBase.ElementCollectionに準拠する時に利用可能です。

Discussion 解説

The default subsequence type for collections that don’t define their own is Slice.