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$[] rs = fr.apply(size);
   7         boolean[] ms = fm.apply(size);
   8 
   9         for (int i = 0; i < as.length; i++) {
  10             $type$ a = as[i];
  11             $type$ b = bs[i];
  12             if (ms[i % ms.length]) {
  13                 rs[i] = ($type$)([[TEST_OP]]);
  14             } else {
  15                 rs[i] = a;
  16             }
  17         }
  18         return rs;
  19     }