Crab is now stable!
- Added
Option
methods. You can use almost all the features of Rust'sOption
trait (exclude nightly-only features). - Breaking:
Option#flatMep
is removed. You can useOption#andThen
instead.
- Added
Result
methods. You can use almost all the features of Rust'sResult
trait (exclude nightly-only features). - Fixed
Ok#toString
,Err#toString
,Some#toString
, andNone#toString
. - Breaking:
Result#flatMep
is removed. You can useResult#andThen
instead. - Breaking: Changed
Ok.value
andErr.err
to private. You can useResult#unwrap
andResult#unwrapErr
instead. - Breaking: Changed
Some.value
to private. You can useOption#unwrap
instead.
- Initial release