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
|
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/globals_OP.R
\name{\%globals\%}
\alias{\%globals\%}
\alias{\%packages\%}
\title{Specify globals and packages for a future assignment}
\usage{
fassignment \%globals\% globals
fassignment \%packages\% packages
}
\arguments{
\item{fassignment}{The future assignment, e.g.
\code{x \%<-\% \{ expr \}}.}
\item{globals}{(optional) a logical, a character vector, or a named list
to control how globals are handled.
For details, see section 'Globals used by future expressions'
in the help for \code{\link{future}()}.}
\item{packages}{(optional) a character vector specifying packages
to be attached in the \R environment evaluating the future.}
}
\description{
Specify globals and packages for a future assignment
}
|