Skip to content

Releases: BooleanCat/go-functional

v0.3.0

19 Feb 09:21
Compare
Choose a tag to compare

New features

  • iter.Fold performs a fold operation on an iterator
  • ops.Add adds two things (can be used with iter.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

12 Feb 15:35
Compare
Choose a tag to compare

Docs

  • Improved README and linked out to reference docs

Bug fixes

  • LineIter did not properly strip line endings on Windows

v0.2.1

11 Feb 23:55
Compare
Choose a tag to compare

Adding MIT license.

v0.2.0

11 Feb 23:06
Compare
Choose a tag to compare

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

10 Feb 21:17
Compare
Choose a tag to compare
v0.1.0

Implement And filter