is_odd.Rd
Return TRUE if the value is odd.
is_odd(x)
A numeric vector
A boolean vector with the return from the condition check.
is_odd(4) #> [1] FALSE is_odd(3) #> [1] TRUE