1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/lazy-as.R
\name{all_dots}
\alias{all_dots}
\title{Combine explicit and implicit dots.}
\usage{
all_dots(.dots, ..., all_named = FALSE)
}
\arguments{
\item{.dots}{A list of lazy objects}
\item{...}{Individual lazy objects}
\item{all_named}{If \code{TRUE}, uses \code{\link{auto_name}} to ensure
every component has a name.}
}
\value{
A \code{\link{lazy_dots}}
}
\description{
Combine explicit and implicit dots.
}
\keyword{internal}
|