rust-boolinator
rust-boolinator copied to clipboard
Hi! If you accept this PR and release it, `no_std`-crates can use this as dependency. Otherwise they don't compile. You can verify this with these commands: - `$ rustup target...
Would you consider uploading the latest version of boolinator? Among other things, this would fix the documentation for `expect`, which is still incorrect in the latest version on crates.io and...
Please add an optional feature to enable support for `Either` from the `either` crate: ```rust cond.as_either(x) // if cond { Either::Left(x) } else { Either::Right(x) } ``` It'd be useful...