return this.delegate.collectBoolean(booleanFunction, target);
}
public ImmutableByteStack collectByte(final ByteFunction<? super T> byteFunction)
{
final ByteArrayStack result = new ByteArrayStack();
this.delegate.forEach(new Procedure<T>()
{
public void value(T each)
{
result.push(byteFunction.byteValueOf(each));
}
});
return result.toImmutable();
}