summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--R/util.R6
-rw-r--r--man/grapes-equals-grapes.Rd2
2 files changed, 2 insertions, 6 deletions
diff --git a/R/util.R b/R/util.R
index f58c3fb..4667f9a 100644
--- a/R/util.R
+++ b/R/util.R
@@ -1,20 +1,18 @@
-# Generic form
#' Multiple assignment operator
#'
#' Assign multiple variables from a list or function return object
#'
#' @param l the variables to be assigned
#' @param r the list or function-return object
-#' @param \ldots other arguments
#'
#' @aliases g
#'
#' @export
-'%=%' = function(l,r,...) UseMethod('%=%')
+'%=%' = function(l,r) UseMethod('%=%')
# Binary Operator
#' @export
-'%=%.lbunch' = function(l,r,...) {
+'%=%.lbunch' = function(l,r) {
Envir = as.environment(-1)
# if (length(r) > length(l))
diff --git a/man/grapes-equals-grapes.Rd b/man/grapes-equals-grapes.Rd
index c0097a7..fbc3231 100644
--- a/man/grapes-equals-grapes.Rd
+++ b/man/grapes-equals-grapes.Rd
@@ -11,8 +11,6 @@ l \%=\% r
\item{l}{the variables to be assigned}
\item{r}{the list or function-return object}
-
-\item{\ldots}{other arguments}
}
\description{
Assign multiple variables from a list or function return object