1 
   2     @Benchmark
   3     public Object [[TEST]][[TEST_TYPE]][[OP_NAME]]() {
   4         $type$[] as = fa.apply(size);
   5         $type$[] bs = fb.apply(size);
   6         $type$[] cs = fc.apply(size);
   7         $type$[] rs = fr.apply(size);
   8         boolean[] ms = fm.apply(size);
   9 
  10         for (int i = 0; i < as.length; i++) {
  11             $type$ a = as[i];
  12             $type$ b = bs[i];
  13             $type$ c = cs[i];
  14             if (ms[i % ms.length]) {
  15                 rs[i] = ($type$)([[TEST_OP]]);
  16             } else {
  17                 rs[i] = a;
  18             }
  19         }
  20         return rs;
  21     }