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)
}
arni-magnusson/arni documentation built on Nov. 3, 2023, 7:35 p.m.