boolean |
LongArrayList.addAll(int index,
LongArrayList list) |
Inserts all the elements from the specified list to this list at the specified position.
|
boolean |
LongArrayList.addAll(LongArrayList list) |
Appends all the elements in the specified list to the end of this list, in the order that they are stored in the
specified list.
|
boolean |
LongArrayList.containsAll(LongArrayList list) |
Returns true if this list contains all the elements of the specified list.
|
boolean |
LongArrayList.equals(LongArrayList that) |
|
boolean |
LongArrayList.removeAll(LongArrayList list) |
Removes all of this collection's elements that are also contained in the specified list.
|
boolean |
LongArrayList.retainAll(LongArrayList list) |
Retains only the elements in this list that are contained in the specified list.
|