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")
}
HughParsonage/healthyAddress documentation built on Jan. 11, 2025, 12:11 a.m.