R/l.R

Defines functions l

Documented in l

#' List Objects
#'
#' Show names of objects or elements.
#'
#' @param \dots passed to \code{ls}.
#'
#' @return Names of objects or elements, as \code{noquote} vector.
#'
#' @importFrom gdata ll
#'
#' @export

l <- function(...)
{
  noquote(row.names(ll(...)))
}
arnima-github/arni documentation built on Oct. 28, 2023, 6:18 p.m.