java.lang.Object
com.jnape.palatable.lambda.functions.builtin.fn2.Drop<A>
Type Parameters:
A - The Iterable element type
All Implemented Interfaces:
Fn1<Integer,Fn1<Iterable<A>,Iterable<A>>>, Fn2<Integer,Iterable<A>,Iterable<A>>, Applicative<Fn1<Iterable<A>,Iterable<A>>,Fn1<Integer,?>>, Cartesian<Integer,Fn1<Iterable<A>,Iterable<A>>,Fn1<?,?>>, Cocartesian<Integer,Fn1<Iterable<A>,Iterable<A>>,Fn1<?,?>>, Contravariant<Integer,Profunctor<?,Fn1<Iterable<A>,Iterable<A>>,Fn1<?,?>>>, Functor<Fn1<Iterable<A>,Iterable<A>>,Fn1<Integer,?>>, Profunctor<Integer,Fn1<Iterable<A>,Iterable<A>>,Fn1<?,?>>, Monad<Fn1<Iterable<A>,Iterable<A>>,Fn1<Integer,?>>, MonadReader<Integer,Fn1<Iterable<A>,Iterable<A>>,Fn1<Integer,?>>, MonadRec<Fn1<Iterable<A>,Iterable<A>>,Fn1<Integer,?>>, MonadWriter<Integer,Fn1<Iterable<A>,Iterable<A>>,Fn1<Integer,?>>

public final class Drop<A> extends Object implements Fn2<Integer,Iterable<A>,Iterable<A>>
Lazily skip the first n elements from an Iterable by returning an Iterable that begins iteration after the nth element. If n is greater than or equal to the length of the Iterable, an empty Iterable is returned.
See Also: