R/internal.R

Defines functions isNotPositiveInteger

isNotPositiveInteger <- function(x){
  !is.numeric(x) || x<1 || (floor(x) != x)
}
stla/OwenQ documentation built on April 24, 2023, 9:49 p.m.