R/tail.R

Defines functions tail

Documented in tail

#' The Head Eats The Tail
#'
#' Replace \code{tail} with \code{head}
#'
#' @param ... Arguments passed to code{head}.
#'
#' @importFrom utils head
#' @export

tail <- function(...) head(...)
ChrisFairless/R.oboros documentation built on Feb. 9, 2020, 12:12 a.m.