Append two arrays of boolean type together, producing a fresh array whose length equals that of the first and second added together. @param lhs The left-hand side. Elements of this array will be copied first into the resulting array. @param rhs The right-hand side.
(boolean[] lhs, boolean[] rhs)
| 60 | * @return |
| 61 | */ |
| 62 | public static boolean[] append(boolean[] lhs, boolean[] rhs) { |
| 63 | boolean[] rs = java.util.Arrays.copyOf(lhs, lhs.length + rhs.length); |
| 64 | System.arraycopy(rhs, 0, rs, lhs.length, rhs.length); |
| 65 | return rs; |
| 66 | } |
| 67 | |
| 68 | /** |
| 69 | * Append an integer item to the front of an array of integer type together, |
no outgoing calls
no test coverage detected