R/isPostcode.R

Defines functions isPostcode

isPostcode <- function(x) {
  if (is.numeric(x)) {
    return(.Call("C_isPostcode", as.integer(x), PACKAGE = packageName()))
  }
  stop("x not numeric")
}

Try the healthyAddress package in your browser

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

healthyAddress documentation built on April 12, 2025, 1:28 a.m.