File: do_call.Rd

package info (click to toggle)
r-cran-projpred 2.0.2%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 740 kB
  • sloc: cpp: 355; sh: 14; makefile: 2
file content (26 lines) | stat: -rw-r--r-- 724 bytes parent folder | download | duplicates (2)
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
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/misc.R
\name{do_call}
\alias{do_call}
\title{Execute a Function Call}
\usage{
do_call(what, args, pkg = NULL)
}
\arguments{
\item{what}{Either a function or a non-empty character string naming the
function to be called.}

\item{args}{A list of arguments to the function call. The names attribute of
\code{args} gives the argument names.}

\item{pkg}{Optional name of the package in which to search for the
function if \code{what} is a character string.}
}
\value{
The result of the (evaluated) function call.
}
\description{
Execute a function call similar to \code{\link{do.call}}, but without
deparsing function arguments.
}
\keyword{internal}