R/oct2num.R

Defines functions oct2num

Documented in oct2num

#' Octal to Number
#'
#' Convert octal string to number.
#'
#' @param x an octal string, like \code{"377"}.
#'
#' @return Integer.
#'
#' @export

oct2num <- function(x)
{
  strtoi(x, 8)
}
arnima-github/arni documentation built on Oct. 28, 2023, 6:18 p.m.