list_ext 0.1.2+1
list_ext: ^0.1.2+1 copied to clipboard
Dart extension methods for Iterable and List. You can easily sum, count elements and many more.
Unreleased #
0.1.2+1 - 2020-03-31 #
quiverdependency decreased to 2.0.0.
0.1.2 - 2020-03-31 #
- Method
joinOf()- get string value for each element and concatenates it with separator. - Method
chunks()- splits into chunks (shortcut for quiverpartition()). - Method
toMap()- createMapfrom iterable (shortcut forMap.fromIterable()). - Extensions for
Listand methodcopyWith()- copy current list with adding element at the end of it.
0.1.1 - 2020-03-27 #
- Getter
isNullOrEmpty- returnstrueif iterable isnullor empty. - Getter
isNotNullOrEmpty- returnstrueif iterable is notnulland not empty. - Remove redundant Flutter dependencies.
0.1.0 - 2020-03-27 #
- Add an example.
- Update package description.
0.0.1 - 2020-03-26 #
- Method
countWhere()- returns count of elements that satisfy the predicatetest. - Method
sumOf()- returns sum of int values by elements. - Method
sumOfDouble()- Returns sum of double values by elements. - Methods
sum()for iterables of int and double.