df_collection library
A package designed to extend Dart collections by offering additional functionality.
Classes
- BoolList
- A space-efficient list of boolean values.
-
CanonicalizedMap<
C, K, V> -
A map whose keys are converted to canonical values of type
C
. - CaseInsensitiveEquality
- String equality that's insensitive to differences in ASCII case.
-
CombinedIterableView<
T> - A view of several iterables combined sequentially into a single iterable.
-
CombinedListView<
T> - A view of several lists combined into a single list.
-
CombinedMapView<
K, V> - Returns a new map that represents maps flattened into a single map.
- CsvUtility
- DeepCollectionEquality
- Deep equality on collections.
-
DefaultEquality<
E> - Equality of objects that compares only the natural equality of the objects.
-
DelegatingIterable<
E> - An Iterable that delegates all operations to a base iterable.
-
DelegatingList<
E> - A List that delegates all operations to a base list.
-
DelegatingMap<
K, V> - A Map that delegates all operations to a base map.
-
DelegatingQueue<
E> - A Queue that delegates all operations to a base queue.
-
DelegatingSet<
E> - A Set that delegates all operations to a base set.
-
Equality<
E> - A generic equality relation on objects.
-
EqualityBy<
E, F> - Equality of objects based on derived values.
-
EqualityMap<
K, V> - A Map whose key equality is determined by an Equality object.
-
EqualitySet<
E> - A Set whose key equality is determined by an Equality object.
-
HeapPriorityQueue<
E> - Heap based priority queue.
-
IdentityEquality<
E> - Equality of objects that compares only the identity of the objects.
-
IterableEquality<
E> - Equality on iterables.
-
IterableZip<
T> - Iterable that iterates over lists of values from other iterables.
- JsonUtility
-
ListEquality<
E> - Equality on lists.
-
ListSlice<
E> - A list view of a range of another list.
-
MapEquality<
K, V> - Equality on maps.
-
MapKeySet<
E> - An unmodifiable Set view of the keys of a Map.
-
MapValueSet<
K, V> - Creates a modifiable Set view of the values of a Map.
-
MultiEquality<
E> - Combines several equalities into a single equality.
-
NonGrowableListMixin<
E> - Mixin class that implements a throwing version of all list operations that change the List's length.
-
NonGrowableListView<
E> - A fixed-length list.
-
PriorityQueue<
E> - A priority queue is a priority based work-list of elements.
-
QueueList<
E> - A class that efficiently implements both Queue and List.
-
SetEquality<
E> - Equality of sets.
-
UnionSet<
E> - A single set that provides a view of the union over a set of sets.
-
UnionSetController<
E> - A controller that exposes a view of the union of a collection of sets.
-
UnmodifiableListView<
E> - An unmodifiable List view of another List.
-
UnmodifiableMapMixin<
K, V> - Mixin class that implements a throwing version of all map operations that change the Map.
-
UnmodifiableMapView<
K, V> - View of a Map that disallow modifying the map.
-
UnmodifiableSetMixin<
E> - Mixin class that implements a throwing version of all set operations that change the Set.
-
UnmodifiableSetView<
E> - An unmodifiable set.
-
UnorderedIterableEquality<
E> - Equality of the elements of two iterables without considering order.
Extensions
-
ChunkedOnIterableX
on Iterable<
T> -
ComparatorExtension
on Comparator<
T> - Extensions on comparator functions.
-
GenericTypeOnIterableX
on Iterable<
T> -
GenericTypeOnMapX
on Map<
K, V> -
IterableComparableExtension
on Iterable<
T> - Extensions that apply to iterables of Comparable elements.
-
IterableDoubleExtension
on Iterable<
double> - Extension on iterables of double.
-
IterableExtension
on Iterable<
T> - Extensions that apply to all iterables.
-
IterableIntegerExtension
on Iterable<
int> - Extension on iterables of integers.
-
IterableIterableExtension
on Iterable<
Iterable< T> > - Extensions on iterables whose elements are also iterables.
-
IterableNullableExtension
on Iterable<
T?> - Extensions that apply to iterables with a nullable element type.
-
IterableNumberExtension
on Iterable<
num> - Extensions that apply to iterables of numbers.
- JoinWithLastSeparatorOnIterableX on Iterable
-
ListComparableExtensions
on List<
E> - Various extensions on lists of comparable elements.
-
ListExtensions
on List<
E> - Various extensions on lists of arbitrary elements.
-
MapKeysAndValyesOnMapX
on Map<
K1, V1> -
MapWithDefaultOnMapX
on Map<
K, V> -
MaybeAddToIterableX
on Iterable<
T> -
MaybeAddToListX
on List<
T> -
MaybeAddToMapX
on Map<
T1, T2> -
MaybeAddToSetX
on Set<
T> -
NonNullKeysOnMapX
on Map<
K?, V> -
NonNullsOnMapX
on Map<
K?, V?> -
NonNullValuesOnMapX
on Map<
K, V?> -
NullIfEmptyOnIterableX
on Iterable<
T> -
NullIfEmptyOnListX
on List<
T> -
NullIfEmptyOnMapX
on Map<
T1, T2> -
NullIfEmptyOnQueueX
on Queue<
T> -
NullIfEmptyOnSetX
on Set<
T> -
PowersetOnIterableX
on Iterable<
Iterable< T> > - SetNestedValueOnMapX on Map
-
TakeLastOnIterableX
on Iterable<
String> -
ToMapOnIterableX
on Iterable<
MapEntry< K, V> > -
TraverseMapOnMapX
on Map<
K, V> -
TryMergeOnIterableX
on Iterable<
Iterable< T> ?> -
TryReduceOnIterableX
on Iterable<
T> -
UniqueOnIterableX
on Iterable<
T> -
UniqueOnMapEntryIterableX
on Iterable<
MapEntry< K, V> > -
UnmodifiableOnListX
on List<
T> -
UnmodifiableOnMapX
on Map<
K, V> -
UnmodifiableOnSetX
on Set<
T>
Functions
-
binarySearch<
E> (List< E> sortedList, E value, {int compare(E, E)?}) → int -
Returns a position of the
value
insortedList
, if it is there. -
chunked<
T> (Iterable< T> source, int chunkSize) → Iterable<Iterable< T> > -
Splits the
source
into chunks of a maximum size specified bychunkSize
. -
combinedOrderedStringId(
List< String> ids) → String - Generates an ordered ID from a list of unordered IDs, that can be used to identify the list of IDs.
-
compareAsciiLowerCase(
String a, String b) → int -
Compares
a
andb
lexically, converting ASCII letters to lower case. -
compareAsciiLowerCaseNatural(
String a, String b) → int -
Compares strings
a
andb
according to lower-case natural sort ordering. -
compareAsciiUpperCase(
String a, String b) → int -
Compares
a
andb
lexically, converting ASCII letters to upper case. -
compareAsciiUpperCaseNatural(
String a, String b) → int -
Compares strings
a
andb
according to upper-case natural sort ordering. -
compareNatural(
String a, String b) → int -
Compares strings
a
andb
according to natural sort ordering. -
equalsIgnoreAsciiCase(
String a, String b) → bool -
Checks if strings
a
andb
differ only on the case of ASCII letters. -
getSetDifference<
T> (Set< T> before, Set<T> after) → Set<T> - Returns the difference between two sets.
-
groupBy<
S, T> (Iterable< S> values, T key(S)) → Map<T, List< S> > -
Groups the elements in
values
by the value returned bykey
. -
hashIgnoreAsciiCase(
String string) → int - Hash code for a string which is compatible with equalsIgnoreAsciiCase.
-
insertionSort<
E> (List< E> elements, {int compare(E, E)?, int start = 0, int? end}) → void -
Sort a list between
start
(inclusive) andend
(exclusive) using insertion sort. -
lastBy<
S, T> (Iterable< S> values, T key(S)) → Map<T, S> -
Associates the elements in
values
by the value returned bykey
. -
lowerBound<
E> (List< E> sortedList, E value, {int compare(E, E)?}) → int -
Returns the first position in
sortedList
that does not compare less thanvalue
. -
mapMap<
K1, V1, K2, V2> (Map< K1, V1> map, {K2 key(K1, V1)?, V2 value(K1, V1)?}) → Map<K2, V2> -
Creates a new map from
map
with new keys and values. -
maxBy<
S, T> (Iterable< S> values, T orderBy(S), {int compare(T, T)?}) → S? -
Returns the element of
values
for whichorderBy
returns the maximum value. -
maybeAddToIterable<
T> (Iterable< T> ? source, Iterable<T> ? add) → Iterable<T> ? -
Adds
add
tosource
if both are not null. -
maybeAddToList<
T> (List< T> ? source, List<T> ? add) → List<T> ? -
Adds
add
tosource
if both are not null. -
maybeAddToMap<
T1, T2> (Map< T1, T2> ? source, Map<T1, T2> ? add) → Map<T1, T2> ? -
Adds
add
tosource
if both are not null. -
maybeAddToSet<
T> (Set< T> ? source, Set<T> ? add) → Set<T> ? -
Adds
add
tosource
if both are not null. -
mergeDataDeep(
dynamic a, dynamic b, [dynamic elseFilter(dynamic)?]) → dynamic - Merges two data structures deeply.
-
mergeDataDeepIncludeCallsToJson(
dynamic a, dynamic b) → dynamic - Merges two data structures deeply and tries to perform toJson on objects.
-
mergeDataDeepIncludeCallsToMap(
dynamic a, dynamic b) → dynamic - Merges two data structures deeply and tries to perform toMap on objects.
-
mergeIterables(
dynamic a, dynamic b) → Iterable - Merges two iterables into one iterable.
-
mergeListsSetsOrQueues(
Iterable a, Iterable b) → Iterable - Merges two Iterables into one. Supported Iterable types are List, Set, and Queue.
-
mergeMaps<
K, V> (Map< K, V> map1, Map<K, V> map2, {V value(V, V)?}) → Map<K, V> -
Returns a new map with all key/value pairs in both
map1
andmap2
. -
mergeMapsDeep<
K, V> (List< Map< maps) → Map<K, V> >K, V> -
Merges all
maps
deeply. -
mergeSort<
E> (List< E> elements, {int start = 0, int? end, int compare(E, E)?}) → void -
Sorts a list between
start
(inclusive) andend
(exclusive) using the merge sort algorithm. -
minBy<
S, T> (Iterable< S> values, T orderBy(S), {int compare(T, T)?}) → S? -
Returns the element of
values
for whichorderBy
returns the minimum value. -
nullFilteredList<
T> (Iterable input) → List< T> -
Converts
input
to a List with non-null elements ifT
is non-null. -
nullFilteredMap<
K, V> (Map input) → Map< K, V> -
Converts
input
to a Map with non-null keys and values ifK
andV
are non-null. -
nullFilteredSet<
T> (Iterable input) → Set< T> -
Converts
input
to a Set with non-null elements ifT
is non-null. -
nullIfEmpty<
T> (T value) → T? -
Returns null if
value
is empty, otherwise returnsvalue
. -
powerset<
T> (Iterable< Iterable< source, T combinator(T a, T b)) → Iterable<T> >T> -
Returns the powerset of the given
source
using the providedcombinator
. -
reverse<
E> (List< E> elements, [int start = 0, int? end]) → void - Reverses a list, or a part of a list, in-place.
-
shuffle(
List elements, [int start = 0, int? end, Random? random]) → void - Shuffles a list randomly.
-
stronglyConnectedComponents<
T> (Map< T, Iterable< graph) → List<T> >Set< T> > -
Returns the strongly connected components of
graph
, in topological order. -
transitiveClosure<
T> (Map< T, Iterable< graph) → Map<T> >T, Set< T> > -
Returns the transitive closure of
graph
. -
traverseMap(
Map map, Iterable keys, {dynamic newValue}) → dynamic -
Traverses a Map using a list of keys. If the keys do not exist, they are
created. If
newValue
is provided, the value at the end of the traversal is set tonewValue
. -
tryToJson(
dynamic object) → dynamic - Tries to convert an object to a json map by calling its toJson method if it exists.
-
tryToMap(
dynamic object) → dynamic - Tries to convert an object to a map by calling its toMap method if it exists.
-
unique<
T> (Iterable< T> src, [bool equals(T a, T b)?]) → Iterable<T> - Returns a new iterable with all duplicate elements removed.
-
uniqueEntries<
K, V> (Iterable< MapEntry< entries) → List<K, V> >MapEntry< K, V> > -
uniqueKeys<
K, V> (Iterable< MapEntry< entries) → List<K, V> >MapEntry< K, V> > -
uniqueValues<
K, V> (Iterable< MapEntry< entries) → List<K, V> >MapEntry< K, V> >