R/is.R

Defines functions isBoolean

isBoolean <- function(x){
  is.atomic(x) && is.logical(x) && length(x) == 1L && !is.na(x)
}

Try the cxhull package in your browser

Any scripts or data that you put into this service are public.

cxhull documentation built on Oct. 24, 2023, 9:07 a.m.