StructureSwift

    DropFirstSequence

    A sequence that lazily consumes and drops n elements from an underlying Base iterator before possibly returning the first available element.

    @frozen struct DropFirstSequence<Base> where Base : Sequence

    Overview

    The underlying iterator’s sequence may be infinite.

    Members

    Typealiases

    Initializers

    Instance Properties

    • var lazy: LazySequence<Self>

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

    • var underestimatedCount: Int

      A value less than or equal to the number of elements in the sequence, calculated nondestructively.

    Instance Methods

    Removed Members

    Instance Methods