Crab is now stable!
- Added
Optionmethods. You can use almost all the features of Rust'sOptiontrait (exclude nightly-only features). - Breaking:
Option#flatMepis removed. You can useOption#andTheninstead.
- Added
Resultmethods. You can use almost all the features of Rust'sResulttrait (exclude nightly-only features). - Fixed
Ok#toString,Err#toString,Some#toString, andNone#toString. - Breaking:
Result#flatMepis removed. You can useResult#andTheninstead. - Breaking: Changed
Ok.valueandErr.errto private. You can useResult#unwrapandResult#unwrapErrinstead. - Breaking: Changed
Some.valueto private. You can useOption#unwrapinstead.
- Initial release