ReactiveList<T> extension
Methods
-
add(
T item) → void -
Available on Reactive<
AddsList< , provided by the ReactiveList extensionT> >itemto the end of the list. -
addAll(
Iterable< T> items) → void -
Available on Reactive<
Adds all items fromList< , provided by the ReactiveList extensionT> >itemsto the end of the list. -
addFirst(
T item) → void -
Available on Reactive<
AddsList< , provided by the ReactiveList extensionT> >itemto the end of the list. -
addToSet(
T item) → void -
Available on Reactive<
AddsList< , provided by the ReactiveList extensionT> >itemto the list only if it does not already exist. -
clear(
) → void -
Available on Reactive<
Clears the list.List< , provided by the ReactiveList extensionT> > -
remove(
T item) → void -
Available on Reactive<
RemovesList< , provided by the ReactiveList extensionT> >itemfrom the list. -
removeAll(
T item) → void -
Available on Reactive<
Removes all occurrences ofList< , provided by the ReactiveList extensionT> >item. -
removeWhere(
bool test(T)) → void -
Available on Reactive<
Removes all elements that matchList< , provided by the ReactiveList extensionT> >test. -
sort(
[int compare(T a, T b)?]) → void -
Available on Reactive<
Sort the list in place using the providedList< , provided by the ReactiveList extensionT> >comparefunction.
Operators
-
operator [](
int index) → T -
Available on Reactive<
List< , provided by the ReactiveList extensionT> > -
operator []=(
int i, T v) → void -
Available on Reactive<
List< , provided by the ReactiveList extensionT> >