Home
last modified time | relevance | path

Searched defs:removeAllOccurrences (Results 1 – 1 of 1) sorted by relevance

/external/apache-commons-lang/src/main/java/org/apache/commons/lang3/
DArrayUtils.java5608 public static boolean[] removeAllOccurrences(final boolean[] array, final boolean element) { in removeAllOccurrences() method in ArrayUtils
5626 public static byte[] removeAllOccurrences(final byte[] array, final byte element) { in removeAllOccurrences() method in ArrayUtils
5644 public static char[] removeAllOccurrences(final char[] array, final char element) { in removeAllOccurrences() method in ArrayUtils
5662 public static double[] removeAllOccurrences(final double[] array, final double element) { in removeAllOccurrences() method in ArrayUtils
5680 public static float[] removeAllOccurrences(final float[] array, final float element) { in removeAllOccurrences() method in ArrayUtils
5698 public static int[] removeAllOccurrences(final int[] array, final int element) { in removeAllOccurrences() method in ArrayUtils
5716 public static long[] removeAllOccurrences(final long[] array, final long element) { in removeAllOccurrences() method in ArrayUtils
5734 public static short[] removeAllOccurrences(final short[] array, final short element) { in removeAllOccurrences() method in ArrayUtils
5753 public static <T> T[] removeAllOccurrences(final T[] array, final T element) { in removeAllOccurrences() method in ArrayUtils