base_list library
A base class intended to be extended by higher-level implementations of List.
Typedefs
-
Combine<
E> = E Function(E value, E element) -
Compare<
E> = int Function(E a, E b) -
Expand<
T, E> = Iterable< T> Function(E element) -
Fold<
T, E> = T Function(T previousValue, E element) -
ForEach<
E> = void Function(E element) -
Generator<
E> = E Function(int index) -
Mapper<
T, E> = T Function(E element) -
OrElse<
E> = E Function() -
Test<
E> = bool Function(E element)