public class ConcatenatedList<T>
extends AbstractCollection<T>
implements List<T>
Constructor and Description |
---|
ConcatenatedList() |
Modifier and Type | Method and Description |
---|---|
Boolean |
add(T v) |
void |
addBefore(Long i,
T v) |
void |
addList(List<T> array) |
Collection<T> |
clone() |
Boolean |
contains(T y) |
Boolean |
equals(Any that) |
T |
getFirst() |
T |
getLast() |
Long |
indexOf(T v) |
Long |
indexOf(Long index,
T v) |
List<Long> |
indices() |
ListIterator<T> |
iterator() |
ListIterator<T> |
iteratorFrom(Long i) |
Long |
lastIndexOf(T v) |
Long |
lastIndexOf(Long index,
T v) |
T |
operator()(Long index) |
T |
operator()=(Long i,
T v) |
Boolean |
remove(T v) |
T |
removeAt(Long i) |
T |
removeFirst() |
T |
removeLast() |
void |
reverse() |
T |
set(T v,
Long i) |
Long |
size() |
void |
sort() |
void |
sort(Fun_0_2 <T,T,Int> cmp)
Declaration: sort(cmp:(T,T)=>Int):void.
|
List<T> |
subList(Long fromIndex,
Long toIndex) |
ArrayList<T> |
toArrayList() |
String |
toString() |
add, addAll, addAllWhere, clear, clone, remove, removeAll, removeAllWhere, retainAll
clone, contains, containsAll, isEmpty, iterator, size
addBefore, getFirst, getLast, indexOf, indexOf, indices, iterator, iteratorFrom, lastIndexOf, lastIndexOf, removeAt, removeFirst, removeLast, reverse, sort, sort, subList
public void addList(List<T> array)
public ArrayList<T> toArrayList()
public Long size()
public Boolean remove(T v)
public Boolean contains(T y)
public Boolean add(T v)
public Collection<T> clone()
public T getLast()
public T operator()(Long index)
public Long indexOf(T v)
public Long indexOf(Long index, T v)
public ListIterator<T> iteratorFrom(Long i)
public List<T> subList(Long fromIndex, Long toIndex)
public T removeLast()
public T getFirst()
public Boolean equals(Any that)
public void addBefore(Long i, T v)
public ListIterator<T> iterator()
public String toString()
public Long lastIndexOf(T v)
public List<Long> indices()
public void reverse()
public T removeAt(Long i)
public T removeFirst()
public Long lastIndexOf(Long index, T v)
public void sort()