Methods

dropΒΆ

drop(i:Iter, n:Int)

Fetch and drop next n values from iterator i.
Source: autoload/Iter.ngs:69

Example

i = Iter([10,20,30])
drop(i, 1)
echo(i.next())
#   20