예제 #1
0
 /** Implemented to avoid megamorphic call on castProcedure */
 private void batchGroupBy(int start, int end, MultimapPutProcedure<?, T> castProcedure) {
   for (int i = start; i < end; i++) {
     castProcedure.value(this.items[i]);
   }
 }