pub const fn is_odd(value: u64) -> bool
Returns whether value leaves a remainder of one when divided by two.
value
use use_arithmetic::is_odd; assert!(is_odd(7)); assert!(!is_odd(12));