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