return result.toImmutable();
}
public ImmutableByteCollection collectByte(ByteFunction<? super V> byteFunction)
{
ByteArrayList result = new ByteArrayList(this.size());
this.forEach(new CollectByteProcedure<V>(byteFunction, result));
return result.toImmutable();
}