R/drop.R

Defines functions `%_%`

#' remove first y values from x
#' @param x a vector
#' @param y an integer
#' @retun vector with y values dropped from front of x
`%_%` <- function(x, y) {
  tail(y, -x)
}
HikaGenji/fql documentation built on April 12, 2021, 8:36 a.m.