return this.delegate.collectFloat(floatFunction, target);
}
public ImmutableIntStack collectInt(final IntFunction<? super T> intFunction)
{
final IntArrayStack result = new IntArrayStack();
this.delegate.forEach(new Procedure<T>()
{
public void value(T each)
{
result.push(intFunction.intValueOf(each));
}
});
return result.toImmutable();
}