Complement ArrayUtils.addAll() variants with by-index and by-value removal 
methods
----------------------------------------------------------------------------------

                 Key: LANG-721
                 URL: https://issues.apache.org/jira/browse/LANG-721
             Project: Commons Lang
          Issue Type: Sub-task
          Components: lang.*
    Affects Versions: 3.0
            Reporter: Matt Benson
            Priority: Minor
             Fix For: 3.x


these are:
{noformat}
<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);
{noformat}

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

Reply via email to