Array<T> |
Array.with(int pos,
T value) |
Make a new one with an extra entry at the given position.
|
Array<T> |
Array.with(Iterable<T> vals) |
Make a new extra entries, at the end of array.
|
Array<T> |
Array.with(Collection<T> vals) |
Make a new extra entries, at the end of array.
|
Array<T> |
Array.with(T value) |
Make a new one with an extra entry, at the end of array (will be
extended by one extra element).
|
Array<T> |
Array.without(T item) |
Make a new array, without this element (or the same array if such
an element is absent).
|
Array<T> |
Array.withoutIndex(int idx) |
Make a new array, without element on specific index.
|