1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
|
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/lazy-ops.R
\name{lazy_ops}
\alias{lazy_ops}
\alias{lazy_base_query}
\alias{op_grps}
\alias{op_vars}
\alias{op_sort}
\alias{op_frame}
\title{Lazy operations}
\usage{
lazy_base_query(x, vars, class = character(), ...)
op_grps(op)
op_vars(op)
op_sort(op)
op_frame(op)
}
\description{
This set of S3 classes describe the action of dplyr verbs. These are
currently used for SQL sources to separate the description of operations
in R from their computation in SQL. This API is very new so is likely
to evolve in the future.
}
\details{
\code{op_vars()} and \code{op_grps()} compute the variables and groups from
a sequence of lazy operations. \code{op_sort()} and \code{op_frame()} tracks the
order and frame for use in window functions.
}
\keyword{internal}
|