Uses of Class
org.jjoost.collections.iters.DropIterable

Packages that use DropIterable
org.jjoost.util   
 

Uses of DropIterable in org.jjoost.util
 

Methods in org.jjoost.util that return DropIterable
static
<E> DropIterable<E>
Iters.drop(int count, java.lang.Iterable<E> iter)
          Returns a new Iterable that returns all but the first count elements of the supplied Iterable (or none of them if there are fewer).
static
<E> DropIterable<E>
Iters.drop(java.lang.Iterable<E> iter, int count)
          Returns a new Iterable that returns all but the first count elements of the supplied Iterable (or none of them if there are fewer).