https://github.com/lemon-mint/isfalse-rs
A Rust library for checking if a value is false.
https://github.com/lemon-mint/isfalse-rs
Last synced: 15 days ago
JSON representation
A Rust library for checking if a value is false.
- Host: GitHub
- URL: https://github.com/lemon-mint/isfalse-rs
- Owner: lemon-mint
- License: agpl-3.0
- Created: 2022-02-08T01:53:54.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-07-24T08:36:58.000Z (almost 3 years ago)
- Last Synced: 2024-10-11T13:50:42.109Z (8 months ago)
- Language: Rust
- Size: 13.7 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# is_false_rs
A Rust library for checking if a value is false.
## Example
```rust
extern crate is_false_rs;
use is_false_rs::IsFalse;let x = false;
assert_eq!(x.is_false(), true);
```