Home | History | Annotate | Download | only in primitives

Lines Matching full:arrays

23 import java.util.Arrays;
38 * already found in either {@link Boolean} or {@link Arrays}.
128 * java.util.Arrays.copyOfRange(array, i, i + target.length)} contains exactly
182 * @param arrays zero or more {@code boolean} arrays
183 * @return a single array containing all the values from the source arrays, in
186 public static boolean[] concat(boolean[]... arrays) {
188 for (boolean[] array : arrays) {
193 for (boolean[] array : arrays) {
225 // Arrays.copyOf() requires Java 6
257 * Returns a comparator that compares two {@code boolean} arrays
265 * Object#equals(Object)} (since arrays support only identity equality), but
266 * it is consistent with {@link Arrays#equals(boolean[], boolean[])}.
324 * Arrays#asList(Object[])}. The list supports {@link List#set(int, Object)},
456 // Arrays.copyOfRange() requires Java 6