#odd #integer #even #numeric

is-odd

Returns true if the given number is odd

4 stable releases

1.1.1 Dec 23, 2024
1.1.0 Nov 11, 2023
1.0.1 Oct 25, 2023
1.0.0 May 26, 2018

#525 in Rust patterns

Download history 343/week @ 2024-12-08 188/week @ 2024-12-15 176/week @ 2024-12-22 96/week @ 2024-12-29 108/week @ 2025-01-05 381/week @ 2025-01-12 225/week @ 2025-01-19 388/week @ 2025-01-26 322/week @ 2025-02-02 188/week @ 2025-02-09 161/week @ 2025-02-16 262/week @ 2025-02-23 250/week @ 2025-03-02 147/week @ 2025-03-09 154/week @ 2025-03-16 117/week @ 2025-03-23

695 downloads per month
Used in 5 crates (3 directly)

MIT license

4KB

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.

No runtime deps