1         $type$[] a = fa.apply(SPECIES.length());
   2         $type$[] b = fb.apply(SPECIES.length());
   3         $type$[] r = fr.apply(SPECIES.length());
   4 
   5         for (int i = 0; i < a.length; i += SPECIES.length()) {
   6             $abstractvectortype$ av = $abstractvectortype$.fromArray(SPECIES, a, i);
   7             av.lanewise(VectorOperators.[[TEST]], b[i]).intoArray(r, i);
   8         }