(int[] lhs, int[] rhs, Operator _operator)
| 62 | } |
| 63 | |
| 64 | static void apply(int[] lhs, int[] rhs, Operator _operator) { |
| 65 | for (int i = 0; i < lhs.length; i++) { |
| 66 | _operator.apply(lhs, rhs, i); |
| 67 | } |
| 68 | } |
| 69 | |
| 70 | interface Filler { |
| 71 | void fill(int[] array, int index); |
no test coverage detected