return this.delegate.collectInt(intFunction, target);
}
public ImmutableLongStack collectLong(final LongFunction<? super T> longFunction)
{
final LongArrayStack result = new LongArrayStack();
this.delegate.forEach(new Procedure<T>()
{
public void value(T each)
{
result.push(longFunction.longValueOf(each));
}
});
return result.toImmutable();
}