Description
these are:
<T> T[] removeAll(T[] array, int... indices); byte[] removeAll(byte[] array, int... indices); short[] removeAll(short[] array, int... indices); int[] removeAll(int[] array, int... indices); char[] removeAll(char[] array, int... indices); long[] removeAll(long[] array, int... indices); float[] removeAll(float[] array, int... indices); double[] removeAll(double[] array, int... indices); boolean[] removeAll(boolean[] array, int... indices); <T> T[] removeElements(T[] array, Object... values); byte[] removeElements(byte[] array, byte... values); short[] removeElements(short[] array, short... values); int[] removeElements(int[] array, int... values); char[] removeElements(char[] array, char... values); long[] removeElements(long[] array, long... values); float[] removeElements(float[] array, float... values); double[] removeElements(double[] array, double... values); boolean[] removeElements(boolean[] array, boolean... values);