R/generic.R

Defines functions foo5 foo4 foo3 foo2 foo1

Documented in foo1 foo2 foo3 foo4 foo5

#' Foo
#'
#' @param x Param
#'
#' @param ... Dots
#'
#' @param new New
#'
#' @param old Old
#'
#' @export
foo1 <- function(x, new = NULL, old = NULL, ...) {
  # methodtest will re-export and extend this
  UseMethod("foo1")
}

#' Foo
#'
#' @param x Param
#'
#' @param ... Dots
#'
#' @param new New
#'
#' @param old Old
#'
#' @export
foo2 <- function(x, new = NULL, old = NULL, ...) {
  # methodtest will only extend this
  UseMethod("foo2")
}

#' Foo
#'
#' @param x Param
#'
#' @param ... Dots
#'
#' @param new New
#'
#' @param old Old
#'
#' @export
foo3 <- function(x, old = NULL, new = NULL, ...) {
  # methodtest will re-export and extend this
  UseMethod("foo3")
}

#' Foo
#'
#' @param x Param
#'
#' @param ... Dots
#'
#' @param new New
#'
#' @param old Old
#'
#' @export
foo4 <- function(x, old = NULL, new = NULL, ...) {
  # methodtest will only extend this
  UseMethod("foo4")
}


#' Foo
#'
#' @param x Param
#'
#' @param ... Dots
#'
#' @param new New
#'
#' @param old Old
#'
#' @export
foo5 <- function(x, ..., new = NULL, old = NULL) {
  # methodtest will re-export and extend this
  UseMethod("foo5")
}
DavisVaughan/generictest documentation built on Jan. 12, 2022, 12:24 a.m.