This repository has been archived by the owner on Jun 23, 2022. It is now read-only.
Changelog
- Added RepeatSequenceF (similar to RepeatF but for repeating whole sequences)
- Added ConcatMultipleF (concatenates multiple sequences)
- Optimized ConcatMultipleF for strings ("smart" StringBuilder use)
- Added SortF, SortDescendingF (a faster alternative to OrderByF which does not use evaluation)
- Added IsOrderedByF, IsOrderedByDescendingF, IsSortedF, IsSortedDescendingF
- Added BinarySearchF
- Added ClearF, FillF (ClearF is an alias to FillF which fills a whole sequence with default values)
- Added EmptyF helper extension method
- Reduced internal EmptyF function calls
- Added CloneF (an alias to ToArrayF(true))
- Added ForEachF
- Improved test code coverage 90% -> 99%
- Minor nullable corrections
Upgrading from v2.0.0
- Reduced framework requirements from .NET Standard 2.1 to .NET Standard 2.0
- Optimized RepeatF (up to 60% more efficient)