is-odd

Crates.iois-odd
lib.rsis-odd
version1.1.1
created_at2018-05-26 17:53:04.278032+00
updated_at2024-12-23 21:56:48.79323+00
descriptionReturns true if the given number is odd.
homepage
repositoryhttps://github.com/nukeop/is-odd
max_upload_size
id67165
size9,602
(nukeop)

documentation

README

is-odd

Returns true if the given number is odd.

Install

Specify the dependencty in Cargo.toml:

[dependencies]
is-odd = "1.1.1"

Or:

$ cargo add is_odd

Fetch it with cargo:

$ cargo build

Usage

use is_odd::IsOdd;

let _i : i32 = 1;
println!("{}", _i.is_odd()); // prints true

About

Currently, the library support both integer and floating point numbers.

License

Copyright © 2018, nukeop. Released under the MIT License.

Commit count: 18

cargo fmt