ArrayList<G>
Last updated
Last updated
Реализация массива изменяемого размера c интерфейсом List .
Массив автоматически увеличивается при необходимости.
Эта реализация хороша для редко изменяемых данных. Поскольку данные хранятся в массиве, эта структура не подходит для сильно изменяемых данных. альтернативная реализация см. LinkedList .
Compile and Run
You can use any type fitting into the size of a pointer (e.g. int, bool, reference types) directly as generic type argument: <bool>, <int>, <string>, <MyObject>. Other types must be "boxed" by appending a question mark: <float?>, <double?>, <MyStruct?>. The compiler will tell you this if necessary.
public EqualDataFunc<G> equal_func { get; } The elements' equality testing function.
public ArrayList (owned EqualDataFunc<G>? equal_func = null) Constructs a new, empty array list.
public ArrayList.wrap (owned G[] items, owned EqualDataFunc<G>? equal_func = null) Constructs a new array list based on provided array.
public override bool @foreach (ForallFunc<G> f)
public bool add_all (Collection<G> collection)
public override BidirListIterator<G> bidir_list_iterator () Returns a BidirListIterator that can be used for iteration over this list.
public override void clear () Removes all items from this collection. Must not be called on read-only collections.
public override ListIterator<G> list_iterator () Returns a ListIterator that can be used for iteration over this list.
Полный список коллекций см здесь.