R/utils-base-wrappers.R

Defines functions append.default append

Documented in append

#' @inheritParams base::append
#' @param ... Additional arguments passed to or from other methods.
#' @inherit base::append title description details return references examples
#' @keywords internal
append <- function(x, values, after = length(x), ...) {
    UseMethod("append")
}

#' @export
append.default <- function(x, values, after = length(x), ...) {
    base::append(x = x, values = values, after = after)
}

Try the einops package in your browser

Any scripts or data that you put into this service are public.

einops documentation built on Sept. 9, 2025, 5:29 p.m.