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

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

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