R/maybe.R
is_nothing.Rd
Check if an object is a 'Nothing' value
is_nothing(a)
Object to check
TRUE or FALSE
TRUE
FALSE
is_nothing(1) #> [1] FALSE is_nothing(just(1)) #> [1] FALSE is_nothing(nothing()) #> [1] TRUE