https://github.com/lemon-mint/istrue-rs
Returns whether the boolean is true
https://github.com/lemon-mint/istrue-rs
Last synced: 3 months ago
JSON representation
Returns whether the boolean is true
- Host: GitHub
- URL: https://github.com/lemon-mint/istrue-rs
- Owner: lemon-mint
- License: agpl-3.0
- Created: 2022-02-08T01:11:48.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2022-02-08T01:44:45.000Z (over 3 years ago)
- Last Synced: 2025-02-28T08:49:38.098Z (3 months ago)
- Language: Rust
- Size: 21.5 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# is_true_rs
A Rust library for checking if a value is true.
## Example
```rust
extern crate is_true_rs;
use is_true_rs::IsTrue;let x = true;
assert_eq!(x.is_true(), true);
```