R/internal.R

Defines functions isNotPositiveInteger

isNotPositiveInteger <- function(x){
  !is.numeric(x) || x<1 || (floor(x) != x)
}

Try the OwenQ package in your browser

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

OwenQ documentation built on April 11, 2023, 5:58 p.m.