TypealiasSwift

    LazyCollection

    A collection containing the same elements as a Base collection, but on which some operations such as map and filter are implemented lazily.

    typealias LazyCollection<T> = LazySequence<T> where T : Collection

    Overview