R/toupper_basic.R

Defines functions toupper_basic

Documented in toupper_basic

#' @name toupper_basic
#' @title Uppercase
#' @param x A character vector
#' @return The same as \code{toupper(x)} for ASCII entries. For implementation
#' reasons, strings wider than 32767 characters (bytes) will be ignored.
#' @export
toupper_basic <- function(x) {
  stopifnot(is.character(x))
  .Call("CToUpperBasic", x, PACKAGE = packageName())
}

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.