Exemple #1
0
 public void IterateRangeBatch(int index, T[] external, int externalOffset, int count, IterateOperatorBatch <T> op)
 {
     inner.IterateRangeBatch(
         IntLong.ToLong(index),
         external,
         IntLong.ToLong(externalOffset),
         IntLong.ToLong(count),
         delegate(T[] v, long vOffset, T[] x, long xOffset, long count2)
     {
         op(v, IntLong.ToInt(vOffset), x, IntLong.ToInt(xOffset), IntLong.ToInt(count2));
     });
 }