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 
   8         for (int i = 0; i < as.length; i++) {
   9             $type$ a = as[i];
  10             $type$ b = bs[i];
  11             rs[i] = ($type$)([[TEST_OP]]);
  12         }
  13 
  14         return rs;
  15     }