ArrayList
classin packageklyn.collections
public class ArrayList<T> extends Object implements List<T>:
└ ArrayList
All Implemented Interfaces: List

Resizable array list.

Native operator mapping:

  • operator[] is mapped to the native klyn_collections_ArrayList_operator_index.

@param <T> Element type.

Properties
Modifier and Type Member Description
public override readonly native property size
size as ULong
Number of elements in the list.
Properties inherited from Object: type
Constructors
Modifier and Type Member Description
public ArrayList Creates an empty ArrayList.
public ArrayList
ArrayList(collection as Collection<T>):
Creates an ArrayList from a collection.
public ArrayList
ArrayList(list as IList<T>):
Creates an ArrayList from a read-only list.
public ArrayList
ArrayList(source as Set<T>):
Creates an ArrayList from a set.
public ArrayList
ArrayList(tuple as Tuple):
Creates an ArrayList from a tuple.
Methods
Modifier and Type Member Description
public native add
add(item as T) as Void
Adds an element at the end.
public native clear
clear() as Void
Removes all elements.
public native count
count(item as T) as ULong
Counts occurrences of the given element in the list.
public native join
join(separator as String) as String
Joins elements into a single string using the separator.
public native remove
remove(item as T) as Boolean
Removes the first matching element.
public native reverse
reverse() as Void
Reverses list elements in-place.
public native reverseNew
reverseNew() as List<T>
Returns a new reversed list without modifying the original.
public native sort
sort() as Void
Sorts the list in ascending order.
public native sortNew
sortNew() as List<T>
Returns a new sorted list without modifying the original.
public native toString
toString() as String
Returns a string representation of the list.
Methods inherited from Object: fromJson, toDict, toJson, toXml
Methods inherited from List: add, remove, reverse, reverseNew, sort, sortNew
Methods inherited from Collection: count, toString
Operators
Modifier and Type Member Description
public native operator in(item as T) as Boolean Returns true if the list contains the given element.
public native operator[](index as Int) as T Gets the element at the given index.
Operators inherited from Collection: operator in(item as T) as Boolean