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