View Source Iter.Iterable.HeadDropper (iterex v0.1.2)
An iterable which drops the first how_many
elements.
Summary
Functions
Creates an iterable which drops the first how_many
elements.
Types
@type t() :: %Iter.Iterable.HeadDropper{ how_many: non_neg_integer(), iterable: Iter.Iterable.t() }
Functions
@spec new(Iter.Iterable.t(), pos_integer()) :: t()
Creates an iterable which drops the first how_many
elements.