is_zero.Rd
Return TRUE if the value is equal to zero.
is_zero(x)
A numeric vector
A boolean vector with the return from the condition check.
is_zero(4) #> [1] FALSE is_zero(0) #> [1] TRUE