ArrayList<E> class
A resizable array implementation similar to Java's ArrayList.
This class provides a dynamic array that can grow and shrink as needed, with methods similar to Java's ArrayList.
Example usage:
ArrayList<String> list = ArrayList<String>();
list.add("Hello");
list.add("World");
list.insert(1, "Beautiful");
print(list.get(0)); // "Hello"
print(list.size()); // 3
Constructors
- ArrayList()
- Creates an empty ArrayList.
-
ArrayList.from(Iterable<
E> collection) - Creates an ArrayList from an existing collection.
- ArrayList.withCapacity(int initialCapacity)
- Creates an ArrayList with the specified initial capacity.
Properties
- first ↔ E
-
The first element.
getter/setter pairoverride
- firstOrNull → T?
-
Available on Iterable<
The first element of this iterator, orT> , provided by the IterableExtensions extensionnull
if the iterable is empty.no setter - hashCode → int
-
The hash code for this object.
no setteroverride
-
indexed
→ Iterable<
(int, T)> -
Available on Iterable<
Pairs of elements of the indices and elements of this iterable.T> , provided by the IterableExtensions extensionno setter - isEmpty → bool
-
Whether this collection has no elements.
no setteroverride
- isNotEmpty → bool
-
Whether this collection has at least one element.
no setteroverride
- isOneAKind → bool
-
Available on List<
Checks if all list data have same value.T> , provided by the ListExtensions extensionno setter -
iterator
→ Iterator<
E> -
Iterator implementation
no setteroverride
- last ↔ E
-
The last element.
getter/setter pairoverride
- lastOrNull → T?
-
Available on Iterable<
The last element of this iterable, orT> , provided by the IterableExtensions extensionnull
if the iterable is empty.no setter - length ↔ int
-
The number of objects in this list.
getter/setter pairoverride
-
nonNulls
→ Iterable<
T> -
Available on Iterable<
The non-T?> , provided by the NullableIterableExtensions extensionnull
elements of this iterable.no setter -
reversed
→ Iterable<
E> -
An Iterable of the objects in this list in reverse order.
no setteroverride
- runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
- single → E
-
Checks that this iterable has only one element, and returns that element.
no setteroverride
- singleOrNull → T?
-
Available on Iterable<
The single element of this iterator, orT> , provided by the IterableExtensions extensionnull
.no setter -
toJS
→ JSArray<
T> -
Available on List<
Converts this List to a JSArray by either casting, unwrapping, or cloning the List.T> , provided by the ListToJSArray extensionno setter -
toJSProxyOrRef
→ JSArray<
T> -
Available on List<
Converts this List to a JSArray by either casting, unwrapping, or proxying the List.T> , provided by the ListToJSArray extensionno setter -
wait
→ Future<
List< T> > -
Available on Iterable<
Waits for futures in parallel.Future< , provided by the FutureIterable extensionT> >no setter
Methods
-
add(
E element) → bool -
Adds
value
to the end of this list, extending the length by one.override -
addAll(
Iterable< E> iterable) → bool -
Appends all objects of
iterable
to the end of this list.override -
addAllIf(
ConditionTester< T> condition, Iterable<T> items) → void -
Available on List<
Adds all items from another list to a list if a condition is met.T> , provided by the ListExtensions extension -
addIf(
ConditionTester< T> condition, T element) → void -
Available on List<
Adds an item to a list if a condition is met.T> , provided by the ListExtensions extension -
all(
ConditionTester< T> test) → bool -
Available on Iterable<
Checks whether all elements of this iterable satisfyT> , provided by the IterableExtension extensiontest
. -
any(
bool test(E)) → bool -
Checks whether any element of this iterable satisfies
test
.override -
asMap(
) → Map< int, E> -
An unmodifiable Map view of this list.
override
-
asNameMap(
) → Map< String, T> -
Available on Iterable<
Creates a map from the names of enum values to the values.T> , provided by the EnumByName extension -
byName(
String name) → T -
Available on Iterable<
Finds the enum value in this list with nameT> , provided by the EnumByName extensionname
. -
cast<
T> () → List< T> -
Returns a view of this list as a list of
R
instances.override -
clear(
) → void -
Removes all elements from this list.
override
-
contains(
Object? element) → bool -
Whether the collection contains an element equal to
element
.override -
elementAt(
int index) → E -
Returns the
index
th element.override -
elementAtOrNull(
int index) → T? -
Available on Iterable<
The element at positionT> , provided by the IterableExtensions extensionindex
of this iterable, ornull
. -
every(
bool test(E)) → bool -
Checks whether every element of this iterable satisfies
test
.override -
expand<
T> (Iterable< T> f(E)) → Iterable<T> -
Expands each element of this Iterable into zero or more elements.
override
-
fillRange(
int start, int end, [E? fill]) → void -
Overwrites a range of elements with
fillValue
.override -
filter(
ConditionTester< T> test) → Iterable<T> -
Available on Iterable<
Filters elements based on a predicate (alias forT> , provided by the IterableExtension extensionwhere
). -
filterWhere(
ConditionTester< T> test) → Iterable<T> -
Available on Iterable<
Filters elements based on a predicate.T> , provided by the IterableExtension extension -
find(
ConditionTester< T> test) → T? -
Available on Iterable<
Finds the first element that satisfies the given predicate.T> , provided by the IterableExtension extension -
findIndex(
ConditionTester< T> test) → int -
Available on Iterable<
Finds the index of the first element that satisfies the given predicate.T> , provided by the IterableExtension extension -
firstWhere(
bool test(E), {E orElse()?}) → E -
The first element that satisfies the given predicate
test
.override -
firstWhereOrNull(
ConditionTester< T> test) → T? -
Available on Iterable<
Returns the first element that satisfies the predicate orT> , provided by the IterableExtension extensionnull
if none match. -
flatMap<
E> (Iterable< E> selector(T item)) → Iterable<E> -
Available on Iterable<
Flattens lists of items into a single iterable.T> , provided by the IterableExtension extension -
flatten<
E> (E? selector(T item)) → Iterable< E> -
Available on Iterable<
Transforms each element of the iterable into zero or more elements of typeT> , provided by the IterableExtension extensionE
and flattens the results. -
flattenIterable<
E> (Iterable< E> ? selector(T item)) → Iterable<E> -
Available on Iterable<
Transforms each element of the iterable into zero or more results of typeT> , provided by the IterableExtension extensionE
, and flattens the resulting collections into a single iterable. -
fold<
T> (T initialValue, T combine(T, E)) → T -
Reduces a collection to a single value by iteratively combining each
element of the collection with an existing value
override
-
followedBy(
Iterable< E> other) → Iterable<E> -
Creates the lazy concatenation of this iterable and
other
.override -
forEach(
void action(E)) → void -
Invokes
action
on each element of this iterable in iteration order.override -
get(
int index) → E - Returns the element at the specified index.
-
get(
[int index = 0]) → T -
Available on Iterable<
Returns the element at the specified index.T> , provided by the IterableExtension extension -
getFirst(
) → T -
Available on Iterable<
Returns the first element of the iterable.T> , provided by the IterableExtension extension -
getLast(
) → T -
Available on Iterable<
Returns the last element of the iterable.T> , provided by the IterableExtension extension -
getRange(
int start, int end) → Iterable< E> -
Creates an Iterable that iterates over a range of elements.
override
-
group<
K> (K keySelector(T item)) → Map< K, List< T> > -
Available on Iterable<
Groups the elements of the iterable by a key returned from theT> , provided by the IterableExtension extensionkeySelector
function. -
groupBy<
K> (K keySelector(T item)) → Map< K, List< T> > -
Available on Iterable<
Groups elements of this iterable into a Map using the givenT> , provided by the IterableExtension extensionkeySelector
. -
groupByAndMap<
K, V> (K keySelector(T item), V valueSelector(T item)) → Map< K, List< V> > -
Available on Iterable<
Groups elements of this iterable into a Map usingT> , provided by the IterableExtension extensionkeySelector
, and appliesvalueSelector
to each element before storing it. -
indexOf(
Object? element, [int start = 0]) → int -
The first index of
element
in this list.override -
indexWhere(
bool test(E element), [int start = 0]) → int -
The first index in the list that satisfies the provided
test
.override -
indexWhereOrNull(
ConditionTester< T> test) → int? -
Available on Iterable<
Finds the index of an element that satisfies the predicate or returnsT> , provided by the IterableExtension extensionnull
if not found. -
insert(
int index, E element) → void -
Inserts
element
at positionindex
in this list.override -
insertAll(
int index, Iterable< E> iterable) → bool -
Inserts all objects of
iterable
at positionindex
in this list.override -
isLengthBetween(
int min, int max) → bool -
Available on Iterable<
Checks if length of double value is BETWEEN minLength to max.T> , provided by the IterableExtension extension -
isLengthEqualTo(
int other) → bool -
Available on Iterable<
Checks if length of double value is EQUAL to max.T> , provided by the IterableExtension extension -
isLengthEt(
int max) → bool -
Available on Iterable<
Short form forT> , provided by the IterableExtension extensionisLengthEqualTo
-
isLengthGreaterThan(
int max) → bool -
Available on Iterable<
Checks if length of double value is GREATER than max.T> , provided by the IterableExtension extension -
isLengthGreaterThanOrEqualTo(
int max) → bool -
Available on Iterable<
Checks if length of double value is GREATER OR EQUAL to max.T> , provided by the IterableExtension extension -
isLengthGt(
int max) → bool -
Available on Iterable<
Short form forT> , provided by the IterableExtension extensionisLengthGreaterThan
-
isLengthGtEt(
int max) → bool -
Available on Iterable<
Short form forT> , provided by the IterableExtension extensionisLengthGreaterThanOrEqualTo
-
isLengthLessThan(
int max) → bool -
Available on Iterable<
Checks if length of double value is LESS than max.T> , provided by the IterableExtension extension -
isLengthLessThanOrEqualTo(
int max) → bool -
Available on Iterable<
Checks if length of double value is LESS OR EQUAL to max.T> , provided by the IterableExtension extension -
isLengthLt(
int max) → bool -
Available on Iterable<
Short form forT> , provided by the IterableExtension extensionisLengthLessThan
-
isLengthLtEt(
int max) → bool -
Available on Iterable<
Short form forT> , provided by the IterableExtension extensionisLengthLessThanOrEqualTo
-
join(
[String separator = ""]) → String -
Converts each element to a String and concatenates the strings.
override
-
lastIndexOf(
Object? element, [int? start]) → int -
The last index of
element
in this list.override -
lastIndexWhere(
bool test(E element), [int? start]) → int -
The last index in the list that satisfies the provided
test
.override -
lastWhere(
bool test(E), {E orElse()?}) → E -
The last element that satisfies the given predicate
test
.override -
lastWhereOrNull(
ConditionTester< T> test) → T? -
Available on Iterable<
Returns the last element that satisfies the predicate orT> , provided by the IterableExtension extensionnull
if none match. -
map<
T> (T f(E)) → Iterable< T> -
The current elements of this iterable modified by
toElement
.override -
none(
ConditionTester< T> test) → bool -
Available on Iterable<
Checks if no element matches the predicate.T> , provided by the IterableExtension extension -
noneMatch(
ConditionTester< T> test) → bool -
Available on Iterable<
Checks if none of the elements match a condition using noneMatch.T> , provided by the IterableExtension extension -
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
pop(
) → T? -
Available on List<
Removes and returns the last element of the list.T> , provided by the ListExtensions extension -
process(
dynamic action(T item)) → void -
Available on Iterable<
Processes each element of the iterable using the providedT> , provided by the IterableExtension extensionaction
function. -
reduce(
E combine(E, E)) → E -
Reduces a collection to a single value by iteratively combining elements
of the collection using the provided function.
override
-
remove(
Object? element) → bool -
Removes the first occurrence of
value
from this list.override -
removeAllIf(
ConditionTester< T> condition, Iterable<T> items) → void -
Available on List<
Removes all items from another list if a condition is met.T> , provided by the ListExtensions extension -
removeAt(
int index) → E -
Removes the object at position
index
from this list.override -
removeIf(
ConditionTester< T> condition, T element) → void -
Available on List<
Removes an item from a list if a condition is met.T> , provided by the ListExtensions extension -
removeLast(
) → E -
Removes and returns the last object in this list.
override
-
removeRange(
int start, int end) → void -
Removes a range of elements from the list.
override
-
removeWhere(
bool test(E element)) → void -
Removes all objects from this list that satisfy
test
.override -
replaceRange(
int start, int end, Iterable< E> newContents) → void -
Replaces a range of elements with the elements of
replacements
.override -
retainWhere(
bool test(E element)) → void -
Removes all objects from this list that fail to satisfy
test
.override -
reverse(
) → void - Reverses the order of elements in this list.
-
reverse(
) → List< T> -
Available on List<
Returns a new list with the elements in reverse order.T> , provided by the ListExtensions extension -
set(
int index, E element) → E - Replaces the element at the specified index.
-
setAll(
int index, Iterable< E> iterable) → void -
Overwrites elements with the objects of
iterable
.override -
setRange(
int start, int end, Iterable< E> iterable, [int skipCount = 0]) → void -
Writes some elements of
iterable
into a range of this list.override -
shift(
) → T? -
Available on List<
Removes and returns the first element of the list.T> , provided by the ListExtensions extension -
shuffle(
[Random? random]) → void -
Shuffles the elements of this list randomly.
override
-
singleWhere(
bool test(E), {E orElse()?}) → E -
The single element that satisfies
test
.override -
size(
) → int - Returns the number of elements in this list.
-
skip(
int count) → Iterable< E> -
Creates an Iterable that provides all but the first
count
elements.override -
skipWhile(
bool test(E)) → Iterable< E> -
Creates an
Iterable
that skips leading elements whiletest
is satisfied.override -
sort(
[int compare(E a, E b)?]) → void -
Sorts this list according to the order specified by the
compare
function.override -
sortedByPublicFirst(
) → List< T> -
Available on Iterable<
Sorts declarations with public visibility before private ones.T> , provided by the SortByPublic extension -
sortedByPublicFirstThenSyntheticLast(
) → List< T> -
Available on Iterable<
Sorts declarations with public visibility first and synthetic declarations last.T> , provided by the SortByPublic extension -
stream(
) → GenericStream< T> -
Available on Iterable<
Converts the iterable to a stream.T> , provided by the IterableExtension extension -
sublist(
int start, [int? end]) → List< E> -
Returns a new list containing the elements between
start
andend
.override -
subList(
int fromIndex, int toIndex) → ArrayList< E> - Returns a view of the portion of this list between the specified indices.
-
take(
int count) → Iterable< E> -
Creates a lazy iterable of the
count
first elements of this iterable.override -
takeWhile(
bool test(E)) → Iterable< E> -
Creates a lazy iterable of the leading elements satisfying
test
.override -
toArray(
) → List< E> - Converts this list to an array (same as toList in Dart).
-
toList(
{bool growable = true}) → List< E> -
Creates a List containing the elements of this Iterable.
override
-
toMap<
K, V> (K keySelector(T item), V valueSelector(T item)) → Map< K, V> -
Available on Iterable<
Maps the iterable to a new iterable using the providedT> , provided by the IterableExtension extensionmapper
function. -
toSet(
) → Set< E> -
Creates a Set containing the same elements as this iterable.
override
-
toString(
) → String -
A string representation of this object.
override
-
where(
bool test(E)) → Iterable< E> -
Creates a new lazy Iterable with all elements that satisfy the
predicate
test
.override -
whereOrNull(
ConditionTester< T> test) → Iterable<T> ? -
Available on Iterable<
Returns an iterable with elements that match a condition, orT> , provided by the IterableExtension extensionnull
if none match. -
whereType<
U> () → Iterable< T> -
Available on Iterable<
Filters elements of a specific typeT> , provided by the IterableExtension extensionT
. -
whereType<
T> () → Iterable< T> -
Creates a new lazy Iterable with all elements that have type
T
.override
Operators
-
operator +(
List< E> other) → List<E> -
Returns the concatenation of this list and
other
.override -
operator ==(
Object other) → bool -
The equality operator.
override
-
operator [](
int index) → E -
The object at the given
index
in the list.override -
operator []=(
int index, E element) → void -
Sets the value at the given
index
in the list tovalue
.override