tooly 0.8.0
tooly: ^0.8.0 copied to clipboard
Tooly is a package based in Lodash for Dart that contain utilities for working with lists, maps, sets and objects.
0.8.0 #
-
New Features:
- Added
dropRight: Removenelements from the end of a list. - Added
first: Retrieve the first element of a list. - Added
flattenDeep: Flatten a list recursively into a single depth. - Added
initial: Retrieve all elements of a list except the last. - Added
join: Convert a list into a string with a custom separator. - Added
last: Retrieve the last element of a list. - Added
nth: Retrieve the element at a specific index, with support for negative indices. - Added
sum: Calculate the sum of all numeric elements in a list. - Added
take: Retrieve the firstnelements from a list. - Added
takeRight: Retrieve the lastnelements from a list.
- Added
-
Improvements:
- Enhanced utility coverage to mimic more Lodash-style methods.
- Updated documentation for all new methods.
0.7.2 #
Change repository link to https://github.com/andygeek/tooly-dart
0.7.1 #
Added homepage https://andygeek.github.io/tooly/
0.7.0 #
- Added
findIndex,findLastIndexandindexOfmethods.
0.6.0 #
- Added
fillmethod.
0.5.0 #
- Added
dropmethod.
0.4.3 #
- Added format for pass Static analysis.
0.4.2 #
- Added example markdown.
0.4.1 #
- Change example structure.
0.4.0 #
- Added
differencemethod.
0.3.1 #
- Added result type for
chunkandflattenmethods.
0.3.0 #
- Added
chunkmethod.
0.2.0 #
- Added
flattenmethod.
0.1.0 #
- Initial version with four methods.