});
}
public <P> void forEachWith(final Procedure2<? super V, ? super P> procedure, final P parameter)
{
this.iterable.forEach(new ByteProcedure()
{
public void value(byte each)
{
procedure.value(CollectByteToObjectIterable.this.function.valueOf(each), parameter);
}