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