[Rcpp-commits] r3919 - pkg/Rcpp/man
noreply at r-forge.r-project.org
noreply at r-forge.r-project.org
Thu Nov 8 13:37:24 CET 2012
Author: romain
Date: 2012-11-08 13:37:23 +0100 (Thu, 08 Nov 2012)
New Revision: 3919
Added:
pkg/Rcpp/man/evalCpp.Rd
Removed:
pkg/Rcpp/man/cppEval.Rd
Log:
s/cppEval/evalCpp/
Deleted: pkg/Rcpp/man/cppEval.Rd
===================================================================
--- pkg/Rcpp/man/cppEval.Rd 2012-11-08 12:31:31 UTC (rev 3918)
+++ pkg/Rcpp/man/cppEval.Rd 2012-11-08 12:37:23 UTC (rev 3919)
@@ -1,47 +0,0 @@
-\name{cppEval}
-\alias{cppEval}
-\title{
-Evaluate a C++ expression
-}
-\description{
-Evaluates a C++ expression. This creates a C++ function using
-\code{\link{cppFunction}} and call it to get the result.
-}
-\usage{
-cppEval(code, depends = character(), includes = character(),
- showOutput = verbose, verbose = getOption("verbose") )
-}
-\arguments{
- \item{code}{
-C++ expression to evaluate
-}
- \item{depends}{
-see \code{\link{cppFunction}}
-}
- \item{includes}{
-see \code{\link{cppFunction}}
-}
- \item{showOutput}{
-see \code{\link{cppFunction}}
-}
- \item{verbose}{
-see \code{\link{cppFunction}}
-}
-}
-\note{
- The result type of the C++ expression must be compatible with wrap.
-}
-\value{
- The result of the evaluated C++ expression.
-}
-\seealso{
-\code{\link{sourceCpp}} and \code{\link{cppFunction}}
-}
-\examples{
-\dontrun{
-
-cppEval( "__cplusplus" )
-cppEval( "std::numeric_limits<double>::max()" )
-
-}
-}
Copied: pkg/Rcpp/man/evalCpp.Rd (from rev 3917, pkg/Rcpp/man/cppEval.Rd)
===================================================================
--- pkg/Rcpp/man/evalCpp.Rd (rev 0)
+++ pkg/Rcpp/man/evalCpp.Rd 2012-11-08 12:37:23 UTC (rev 3919)
@@ -0,0 +1,47 @@
+\name{cppEval}
+\alias{cppEval}
+\title{
+Evaluate a C++ expression
+}
+\description{
+Evaluates a C++ expression. This creates a C++ function using
+\code{\link{cppFunction}} and call it to get the result.
+}
+\usage{
+cppEval(code, depends = character(), includes = character(),
+ showOutput = verbose, verbose = getOption("verbose") )
+}
+\arguments{
+ \item{code}{
+C++ expression to evaluate
+}
+ \item{depends}{
+see \code{\link{cppFunction}}
+}
+ \item{includes}{
+see \code{\link{cppFunction}}
+}
+ \item{showOutput}{
+see \code{\link{cppFunction}}
+}
+ \item{verbose}{
+see \code{\link{cppFunction}}
+}
+}
+\note{
+ The result type of the C++ expression must be compatible with wrap.
+}
+\value{
+ The result of the evaluated C++ expression.
+}
+\seealso{
+\code{\link{sourceCpp}} and \code{\link{cppFunction}}
+}
+\examples{
+\dontrun{
+
+cppEval( "__cplusplus" )
+cppEval( "std::numeric_limits<double>::max()" )
+
+}
+}
More information about the Rcpp-commits
mailing list