Skip to content

FunML v0.2.0

Compare
Choose a tag to compare
@Tinitto Tinitto released this 28 Jan 12:35
· 62 commits to master since this release
f22b788

Added

  • Result helpers: if_ok, if_err, is_ok, is_err.
  • Option helpers: if_some, if_none, is_some, is_none.
  • Sequence helpers: imap, ifilter, ireduce.
  • Pipeline helper: funml.execute().

Changed

  • Changed creation of records to use classes decorated with record
  • Changed creation of enums to use classes subclassed from funml.Enum
  • Removed map and filter methods of IList

Fixed

  • Fixed equality check of Result.ERR as originally Result.ERR(TypeError()) was not equal to Result.ERR(TypeError()).