Home
last modified time | relevance | path

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

/external/apache-commons-lang/src/main/java/org/apache/commons/lang3/
DArrayUtils.java5429 public static boolean[] removeAllOccurences(final boolean[] array, final boolean element) { in removeAllOccurences() method in ArrayUtils
5449 public static byte[] removeAllOccurences(final byte[] array, final byte element) { in removeAllOccurences() method in ArrayUtils
5469 public static char[] removeAllOccurences(final char[] array, final char element) { in removeAllOccurences() method in ArrayUtils
5489 public static double[] removeAllOccurences(final double[] array, final double element) { in removeAllOccurences() method in ArrayUtils
5509 public static float[] removeAllOccurences(final float[] array, final float element) { in removeAllOccurences() method in ArrayUtils
5529 public static int[] removeAllOccurences(final int[] array, final int element) { in removeAllOccurences() method in ArrayUtils
5549 public static long[] removeAllOccurences(final long[] array, final long element) { in removeAllOccurences() method in ArrayUtils
5569 public static short[] removeAllOccurences(final short[] array, final short element) { in removeAllOccurences() method in ArrayUtils
5590 public static <T> T[] removeAllOccurences(final T[] array, final T element) { in removeAllOccurences() method in ArrayUtils