dwww Home | Show directory contents | Find package

#' Generic test
#'
#'
#' @param x A parameter
#'
#' @rdname single-method
#'
#' @export
single_method <- function(x) {
  UseMethod("single_method")
}

#' Test default
#'
#' @param x A parameter
#'
#' @rdname single-method-2
#'
#' @export
single_method.default <- function(x) {
  x
}

Generated by dwww version 1.15 on Sun Jun 16 14:41:29 CEST 2024.