| Crates.io | is-odd |
| lib.rs | is-odd |
| version | 1.1.1 |
| created_at | 2018-05-26 17:53:04.278032+00 |
| updated_at | 2024-12-23 21:56:48.79323+00 |
| description | Returns true if the given number is odd. |
| homepage | |
| repository | https://github.com/nukeop/is-odd |
| max_upload_size | |
| id | 67165 |
| size | 9,602 |
Returns true if the given number is odd.
Specify the dependencty in Cargo.toml:
[dependencies]
is-odd = "1.1.1"
Or:
$ cargo add is_odd
Fetch it with cargo:
$ cargo build
use is_odd::IsOdd;
let _i : i32 = 1;
println!("{}", _i.is_odd()); // prints true
Currently, the library support both integer and floating point numbers.
Copyright © 2018, nukeop. Released under the MIT License.