An open API service indexing awesome lists of open source software.

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.

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);
```