darq 0.2.0
darq: ^0.2.0 copied to clipboard
The power of lazy-evaluated enumerables in your hands! (A port of functional LINQ from the .NET library.)
0.2.0 #
- The naming convention of the enumerable methods has been changed so that they are suffixed by the letter "e" (such as
selectE,joinE,whereE). This is an attempt at a compromise between keeping the names of the methods consistent with their .NET origins while avoiding conflicts with existingIterablemethods. - Added two new factory methods to
Enumerable:fromStringandgenerator.fromStringconverts aStringinto anEnumerablethat iterates over each individual character, whilegeneratorallows an iterable to be created of the specified length using a given generator function. countIfEhas been merged withcountEso thatcountEnow has aConditionas an optional parameter. If theConditionis provided, the behavior is identical tocountIfE, and if not, the behavior is identical to the originalcountE.- Fixed an issue where several of the enumerable methods weren't asserting on required parameters.
0.1.2 #
- Addressing pub description warnings.
0.1.1 #
- Addressing pub formatting warnings and issues.
0.1.0 #
- Initial release.