Structures

The following structures are available globally.

  • A sequence from splitting a Collection lazily.

    See more

    Declaration

    Swift

    public struct LazySplitSequence <Base: Collection>: IteratorProtocol, LazySequenceProtocol where
    	Base.Element: Equatable
  • A sequence from splitting a series of Collections lazily, as if they were one Collection.

    See more

    Declaration

    Swift

    public struct PartialSourceLazySplitSequence <Base: Collection>: IteratorProtocol, LazySequenceProtocol where
    	Base.Element: Equatable,
    	Base.SubSequence: RangeReplaceableCollection