Releases: BooleanCat/go-functional
Releases · BooleanCat/go-functional
v0.3.0
New features
iter.Fold
performs a fold operation on an iteratorops.Add
adds two things (can be used withiter.Fold
)- More Example specs added for clearer docs
Notes
Since this is tested against Go 1.18-rc1 now, the constraints
package was added in order to continue to use constraints.Ordered
and others. The Go maintainers removed constraints
from the standard library and into a non-standard package.
New Contributors
Full Changelog: v0.2.2...v0.3.0
v0.2.2
Docs
- Improved README and linked out to reference docs
Bug fixes
- LineIter did not properly strip line endings on Windows
v0.2.1
Adding MIT license.
v0.2.0
New features
This release introduces the ops package which will contain general purpose operations for use with iter.Map
. Two ops are included that an Unwrap
an Option
or a Result
.
Full Changelog: v0.1.0...v0.2.0
Initial release
v0.1.0 Implement And filter