[Rcpp-commits] r628 - in pkg: inst/examples/RcppInline src

noreply at r-forge.r-project.org noreply at r-forge.r-project.org
Sun Feb 7 17:34:38 CET 2010


Author: romain
Date: 2010-02-07 17:34:37 +0100 (Sun, 07 Feb 2010)
New Revision: 628

Added:
   pkg/inst/examples/RcppInline/RObject.r
Removed:
   pkg/inst/examples/RcppInline/RcppSexpTests.r
Modified:
   pkg/src/RcppDoxygenExamples.h
Log:
change file name s/RcppSexpText/RObject/

Copied: pkg/inst/examples/RcppInline/RObject.r (from rev 627, pkg/inst/examples/RcppInline/RcppSexpTests.r)
===================================================================
--- pkg/inst/examples/RcppInline/RObject.r	                        (rev 0)
+++ pkg/inst/examples/RcppInline/RObject.r	2010-02-07 16:34:37 UTC (rev 628)
@@ -0,0 +1,269 @@
+#!/usr/bin/r -t
+#
+# Copyright (C) 2009 Dirk Eddelbuettel and Romain Francois
+#
+# This file is part of Rcpp.
+#
+# Rcpp is free software: you can redistribute it and/or modify it
+# under the terms of the GNU General Public License as published by
+# the Free Software Foundation, either version 2 of the License, or
+# (at your option) any later version.
+#
+# Rcpp is distributed in the hope that it will be useful, but
+# WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with Rcpp.  If not, see <http://www.gnu.org/licenses/>.
+
+suppressMessages(library(Rcpp))
+suppressMessages(library(inline))
+
+cat("===Doubles\n")
+foo <- '
+        double d = Rcpp::as<double>(x);
+	std::cout << "Returning twice the value of " << d << " : ";
+	return(Rcpp::wrap( 2*d ) );
+        '
+funx <- cfunction(signature(x="numeric"), foo, Rcpp=TRUE, verbose=FALSE)
+cat(funx(x=2.123), "\n")
+cat(funx(x=2), "\n")
+##funx(x='2')  ## throws as expected
+##funx(x=2:3)  ## throws as expected
+
+
+cat("\n===Int\n")
+foo <- '
+        int i = Rcpp::as<int>(x);
+	std::cout << "Returning twice the value of " << i << " : ";
+	return(Rcpp::wrap( 2*i ) );
+        '
+funx <- cfunction(signature(x="numeric"), foo, Rcpp=TRUE, verbose=FALSE)
+cat(funx(x=2), "\n")
+cat(funx(x=2.2), "\n")
+funx <- cfunction(signature(x="raw"), foo, Rcpp=TRUE, verbose=FALSE)
+cat(funx(x=as.raw(2)), "\n")
+
+cat("\n===String\n")
+foo <- '
+        std::string s = Rcpp::as<std::string>(x);
+	std::cout << "Returning twice the value of " << s << " : ";
+	return(Rcpp::wrap( s+s ) );
+        '
+funx <- cfunction(signature(x="character"), foo, Rcpp=TRUE, verbose=FALSE)
+cat(funx(x="abc"), "\n")
+
+cat("\n===Raw (bytes)\n")
+foo <- '
+        Rbyte i = Rcpp::as<Rbyte>(x) ;
+	std::cout << "Returning twice the value of " << (int)i << " : ";
+	return(Rcpp::wrap( (Rbyte)(2*i) ) );
+        '
+funx <- cfunction(signature(x="numeric"), foo, Rcpp=TRUE, verbose=FALSE)
+cat( funx(x=2), "\n")
+funx <- cfunction(signature(x="integer"), foo, Rcpp=TRUE, verbose=FALSE)
+cat( funx(x=2L), "\n")
+funx <- cfunction(signature(x="raw"), foo, Rcpp=TRUE, verbose=FALSE)
+cat( funx(x=as.raw(2)), "\n")
+
+cat("\n=== logical \n")
+foo <- '
+bool b = Rcpp::as<bool>(x);
+std::cout << "flip  " << ( b ? "TRUE" : "FALSE" ) << " : ";
+return(Rcpp::wrap( !b ));
+'
+funx <- cfunction(signature(x="logical"), foo, Rcpp=TRUE, verbose=FALSE)
+cat( res <- funx(x=TRUE) , "\n")  ; stopifnot( !res )
+cat( res <- funx(x=FALSE), "\n" ) ; stopifnot( res)
+funx <- cfunction(signature(x="numeric"), foo, Rcpp=TRUE, verbose=FALSE)
+cat( res <- funx(x=2)  , "\n")   ; stopifnot( !res )
+cat( res <- funx(x=0.0), "\n")   ; stopifnot( res)
+funx <- cfunction(signature(x="integer"), foo, Rcpp=TRUE, verbose=FALSE)
+cat( res <- funx(x=2L), "\n")    ; stopifnot( !res )
+cat( res <- funx(x=0L), "\n")    ; stopifnot( res)
+funx <- cfunction(signature(x="raw"), foo, Rcpp=TRUE, verbose=FALSE)
+cat( res <- funx(x=as.raw(2)), "\n") ; stopifnot( !res )
+cat( res <- funx(x=as.raw(0)), "\n") ; stopifnot( res)
+
+### vectors
+
+cat("\n===Int Vector via RcppResultSet.getSEXP\n")
+foo <- '
+        std::vector<int> iv = Rcpp::as< std::vector<int> >(x) ;
+	std::cout << "Returning twice the value of vector : ";
+        for (size_t i=0; i<iv.size(); i++) {
+            iv[i] = 2*iv[i];
+        }
+        RcppResultSet rs;
+        rs.add("", iv);
+        return(rs.getSEXP());
+        '
+funx <- cfunction(signature(x="numeric"), foo, Rcpp=TRUE, verbose=FALSE)
+print(funx(x=2:5))
+funx <- cfunction(signature(x="integer"), foo, Rcpp=TRUE, verbose=FALSE)
+print(funx(x=2:5))
+funx <- cfunction(signature(x="raw"), foo, Rcpp=TRUE, verbose=FALSE)
+print(funx(x=as.raw(2:5)))
+
+cat("\n===Int Vector\n")
+foo <- '
+        std::vector<int> iv = Rcpp::as< std::vector<int> >(x) ;
+	std::cout << "Returning twice the value of vector : ";
+        for (size_t i=0; i<iv.size(); i++) {
+            iv[i] = 2*iv[i];
+        }
+	return(Rcpp::wrap( iv ) );
+        '
+funx <- cfunction(signature(x="numeric"), foo, Rcpp=TRUE, verbose=FALSE)
+print(funx(x=2:5+.1))
+funx <- cfunction(signature(x="integer"), foo, Rcpp=TRUE, verbose=FALSE)
+print(funx(x=2:5))
+funx <- cfunction(signature(x="raw"), foo, Rcpp=TRUE, verbose=FALSE)
+print(funx(x=as.raw(2:5)))
+
+
+cat("\n===Double Vector\n")
+foo <- '
+        std::vector<double> iv = Rcpp::as< std::vector<double> >(x) ;
+	std::cout << "Returning twice the value of vector : ";
+        for (size_t i=0; i<iv.size(); i++) {
+            iv[i] = 2*iv[i];
+        }
+ 	return(Rcpp::wrap( iv ));
+        '
+funx <- cfunction(signature(x="numeric"), foo, Rcpp=TRUE, verbose=FALSE)
+print(funx(x=0.1+2:5))
+funx <- cfunction(signature(x="integer"), foo, Rcpp=TRUE, verbose=FALSE)
+print(funx(x=2:5))
+funx <- cfunction(signature(x="raw"), foo, Rcpp=TRUE, verbose=FALSE)
+print(funx(x=as.raw(2:5)))
+
+cat("\n===Raw Vector\n")
+foo <- '
+        std::vector<Rbyte> iv = Rcpp::as< std::vector<Rbyte> >(x) ;
+	std::cout << "Returning twice the value of vector : ";
+        for (size_t i=0; i<iv.size(); i++) {
+            iv[i] = 2*iv[i];
+        }
+ 	return(Rcpp::wrap( iv ));
+        '
+funx <- cfunction(signature(x="raw"), foo, Rcpp=TRUE, verbose=FALSE)
+print(funx(x=as.raw(0:9)))
+funx <- cfunction(signature(x="integer"), foo, Rcpp=TRUE, verbose=FALSE)
+print(funx(x=0:9))
+funx <- cfunction(signature(x="numeric"), foo, Rcpp=TRUE, verbose=FALSE)
+print(funx(x=0:9+.1))
+
+cat("\n=== vector<bool>\n")
+foo <- '
+std::vector<bool> bv = Rcpp::as< std::vector<bool> >(x) ;
+std::cout << "Flip the value of vector : ";
+for (size_t i=0; i<bv.size(); i++) {
+    bv[i].flip() ;
+}
+return(Rcpp::wrap( bv ));
+'
+funx <- cfunction(signature(x="logical"), foo, Rcpp=TRUE, verbose=FALSE)
+print(funx(x=c(TRUE,FALSE)))
+funx <- cfunction(signature(x="raw"), foo, Rcpp=TRUE, verbose=FALSE)
+print(funx(x=as.raw(0:9)))
+funx <- cfunction(signature(x="integer"), foo, Rcpp=TRUE, verbose=FALSE)
+print(funx(x=0:9))
+funx <- cfunction(signature(x="numeric"), foo, Rcpp=TRUE, verbose=FALSE)
+print(funx(x=as.numeric(0:9)))
+
+
+cat("\n===String Vector\n")
+foo <- '
+        std::vector<std::string> iv = Rcpp::as< std::vector<std::string> >(x);
+	std::cout << "Returning twice the value of vector : ";
+        for (size_t i=0; i<iv.size(); i++) {
+            iv[i] = iv[i] + iv[i];
+        }
+ 	return(Rcpp::wrap( iv ));
+        '
+funx <- cfunction(signature(x="character"), foo, Rcpp=TRUE, verbose=FALSE)
+print(funx(x=c("foo", "bar")))
+
+### using std::set
+cat("\n=== set<int>\n")
+foo <- '
+std::set<int> iv ;
+iv.insert( 0 ) ;
+iv.insert( 1 ) ;
+iv.insert( 0 ) ;
+return Rcpp::wrap( iv );'
+funx <- cfunction(signature(), foo, Rcpp=TRUE, verbose=FALSE, includes = "#include <set>" )
+print(res <- funx())
+stopifnot( identical( res, 0:1 ) )
+
+cat("\n=== set<double>\n")
+foo <- '
+std::set<double> ds;
+ds.insert( 0.0 );
+ds.insert( 1.0 );
+ds.insert( 0.0 );
+return(Rcpp::wrap( ds )); '
+funx <- cfunction(signature(), foo, Rcpp=TRUE, verbose=FALSE, includes = "#include <set>")
+print( res <- funx() )
+stopifnot( identical( res, as.numeric(0:1)))
+
+cat("\n=== set<raw>\n")
+foo <- '
+std::set<Rbyte> bs ;
+bs.insert( (Rbyte)0 ) ;
+bs.insert( (Rbyte)1 ) ;
+bs.insert( (Rbyte)0 ) ;
+return(Rcpp::wrap( bs )); '
+funx <- cfunction(signature(), foo, Rcpp=TRUE, verbose=FALSE, includes = "#include <set>")
+print( res <- funx() )
+stopifnot( identical( res, as.raw(0:1)))
+
+cat("\n=== set<string> \n")
+foo <- '
+std::set<std::string> ss ;
+ss.insert( "foo" ) ;
+ss.insert( "bar" ) ;
+ss.insert( "foo" ) ;
+return(Rcpp::wrap( ss )); '
+funx <- cfunction(signature(), foo, Rcpp=TRUE, verbose=FALSE, include = "#include <set>" )
+print( res <- funx() )
+stopifnot( identical( res, c("bar","foo")) )
+
+
+#========= attributes
+
+funx <- cfunction(
+	signature(x="data.frame"), '
+std::vector<std::string> iv = Rcpp::RObject(x).attributeNames();
+return(Rcpp::wrap( iv ));
+', Rcpp=TRUE, verbose=FALSE)
+res <- funx( iris )
+stopifnot( all( c("names", "row.names", "class" ) %in% res ) )
+
+funx <- cfunction(signature(x="data.frame"), '
+bool has_class = Rcpp::RObject(x).hasAttribute( "class" ) ;
+return Rcpp::wrap( has_class ) ;
+', Rcpp=TRUE, verbose=FALSE)
+res <- funx( iris )
+stopifnot( res )
+
+funx <- cfunction(signature(x="data.frame"), '
+return Rcpp::RObject(x).attr( "row.names" ) ;
+', Rcpp=TRUE, verbose=FALSE)
+res <- funx( iris )
+stopifnot( identical(res, 1:150) )
+
+#============ NULL
+funx <- cfunction(signature(x="ANY"), '
+bool is_null = Rcpp::RObject(x).isNULL() ;
+return Rcpp::wrap( is_null ) ;
+', Rcpp=TRUE, verbose=FALSE)
+res <- funx( iris )
+stopifnot( !res )
+res <- funx( NULL )
+stopifnot( res )
+
+
+

Deleted: pkg/inst/examples/RcppInline/RcppSexpTests.r
===================================================================
--- pkg/inst/examples/RcppInline/RcppSexpTests.r	2010-02-07 16:32:01 UTC (rev 627)
+++ pkg/inst/examples/RcppInline/RcppSexpTests.r	2010-02-07 16:34:37 UTC (rev 628)
@@ -1,269 +0,0 @@
-#!/usr/bin/r -t
-#
-# Copyright (C) 2009 Dirk Eddelbuettel and Romain Francois
-#
-# This file is part of Rcpp.
-#
-# Rcpp is free software: you can redistribute it and/or modify it
-# under the terms of the GNU General Public License as published by
-# the Free Software Foundation, either version 2 of the License, or
-# (at your option) any later version.
-#
-# Rcpp is distributed in the hope that it will be useful, but
-# WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with Rcpp.  If not, see <http://www.gnu.org/licenses/>.
-
-suppressMessages(library(Rcpp))
-suppressMessages(library(inline))
-
-cat("===Doubles\n")
-foo <- '
-        double d = Rcpp::as<double>(x);
-	std::cout << "Returning twice the value of " << d << " : ";
-	return(Rcpp::wrap( 2*d ) );
-        '
-funx <- cfunction(signature(x="numeric"), foo, Rcpp=TRUE, verbose=FALSE)
-cat(funx(x=2.123), "\n")
-cat(funx(x=2), "\n")
-##funx(x='2')  ## throws as expected
-##funx(x=2:3)  ## throws as expected
-
-
-cat("\n===Int\n")
-foo <- '
-        int i = Rcpp::as<int>(x);
-	std::cout << "Returning twice the value of " << i << " : ";
-	return(Rcpp::wrap( 2*i ) );
-        '
-funx <- cfunction(signature(x="numeric"), foo, Rcpp=TRUE, verbose=FALSE)
-cat(funx(x=2), "\n")
-cat(funx(x=2.2), "\n")
-funx <- cfunction(signature(x="raw"), foo, Rcpp=TRUE, verbose=FALSE)
-cat(funx(x=as.raw(2)), "\n")
-
-cat("\n===String\n")
-foo <- '
-        std::string s = Rcpp::as<std::string>(x);
-	std::cout << "Returning twice the value of " << s << " : ";
-	return(Rcpp::wrap( s+s ) );
-        '
-funx <- cfunction(signature(x="character"), foo, Rcpp=TRUE, verbose=FALSE)
-cat(funx(x="abc"), "\n")
-
-cat("\n===Raw (bytes)\n")
-foo <- '
-        Rbyte i = Rcpp::as<Rbyte>(x) ;
-	std::cout << "Returning twice the value of " << (int)i << " : ";
-	return(Rcpp::wrap( (Rbyte)(2*i) ) );
-        '
-funx <- cfunction(signature(x="numeric"), foo, Rcpp=TRUE, verbose=FALSE)
-cat( funx(x=2), "\n")
-funx <- cfunction(signature(x="integer"), foo, Rcpp=TRUE, verbose=FALSE)
-cat( funx(x=2L), "\n")
-funx <- cfunction(signature(x="raw"), foo, Rcpp=TRUE, verbose=FALSE)
-cat( funx(x=as.raw(2)), "\n")
-
-cat("\n=== logical \n")
-foo <- '
-bool b = Rcpp::as<bool>(x);
-std::cout << "flip  " << ( b ? "TRUE" : "FALSE" ) << " : ";
-return(Rcpp::wrap( !b ));
-'
-funx <- cfunction(signature(x="logical"), foo, Rcpp=TRUE, verbose=FALSE)
-cat( res <- funx(x=TRUE) , "\n")  ; stopifnot( !res )
-cat( res <- funx(x=FALSE), "\n" ) ; stopifnot( res)
-funx <- cfunction(signature(x="numeric"), foo, Rcpp=TRUE, verbose=FALSE)
-cat( res <- funx(x=2)  , "\n")   ; stopifnot( !res )
-cat( res <- funx(x=0.0), "\n")   ; stopifnot( res)
-funx <- cfunction(signature(x="integer"), foo, Rcpp=TRUE, verbose=FALSE)
-cat( res <- funx(x=2L), "\n")    ; stopifnot( !res )
-cat( res <- funx(x=0L), "\n")    ; stopifnot( res)
-funx <- cfunction(signature(x="raw"), foo, Rcpp=TRUE, verbose=FALSE)
-cat( res <- funx(x=as.raw(2)), "\n") ; stopifnot( !res )
-cat( res <- funx(x=as.raw(0)), "\n") ; stopifnot( res)
-
-### vectors
-
-cat("\n===Int Vector via RcppResultSet.getSEXP\n")
-foo <- '
-        std::vector<int> iv = Rcpp::as< std::vector<int> >(x) ;
-	std::cout << "Returning twice the value of vector : ";
-        for (size_t i=0; i<iv.size(); i++) {
-            iv[i] = 2*iv[i];
-        }
-        RcppResultSet rs;
-        rs.add("", iv);
-        return(rs.getSEXP());
-        '
-funx <- cfunction(signature(x="numeric"), foo, Rcpp=TRUE, verbose=FALSE)
-print(funx(x=2:5))
-funx <- cfunction(signature(x="integer"), foo, Rcpp=TRUE, verbose=FALSE)
-print(funx(x=2:5))
-funx <- cfunction(signature(x="raw"), foo, Rcpp=TRUE, verbose=FALSE)
-print(funx(x=as.raw(2:5)))
-
-cat("\n===Int Vector\n")
-foo <- '
-        std::vector<int> iv = Rcpp::as< std::vector<int> >(x) ;
-	std::cout << "Returning twice the value of vector : ";
-        for (size_t i=0; i<iv.size(); i++) {
-            iv[i] = 2*iv[i];
-        }
-	return(Rcpp::wrap( iv ) );
-        '
-funx <- cfunction(signature(x="numeric"), foo, Rcpp=TRUE, verbose=FALSE)
-print(funx(x=2:5+.1))
-funx <- cfunction(signature(x="integer"), foo, Rcpp=TRUE, verbose=FALSE)
-print(funx(x=2:5))
-funx <- cfunction(signature(x="raw"), foo, Rcpp=TRUE, verbose=FALSE)
-print(funx(x=as.raw(2:5)))
-
-
-cat("\n===Double Vector\n")
-foo <- '
-        std::vector<double> iv = Rcpp::as< std::vector<double> >(x) ;
-	std::cout << "Returning twice the value of vector : ";
-        for (size_t i=0; i<iv.size(); i++) {
-            iv[i] = 2*iv[i];
-        }
- 	return(Rcpp::wrap( iv ));
-        '
-funx <- cfunction(signature(x="numeric"), foo, Rcpp=TRUE, verbose=FALSE)
-print(funx(x=0.1+2:5))
-funx <- cfunction(signature(x="integer"), foo, Rcpp=TRUE, verbose=FALSE)
-print(funx(x=2:5))
-funx <- cfunction(signature(x="raw"), foo, Rcpp=TRUE, verbose=FALSE)
-print(funx(x=as.raw(2:5)))
-
-cat("\n===Raw Vector\n")
-foo <- '
-        std::vector<Rbyte> iv = Rcpp::as< std::vector<Rbyte> >(x) ;
-	std::cout << "Returning twice the value of vector : ";
-        for (size_t i=0; i<iv.size(); i++) {
-            iv[i] = 2*iv[i];
-        }
- 	return(Rcpp::wrap( iv ));
-        '
-funx <- cfunction(signature(x="raw"), foo, Rcpp=TRUE, verbose=FALSE)
-print(funx(x=as.raw(0:9)))
-funx <- cfunction(signature(x="integer"), foo, Rcpp=TRUE, verbose=FALSE)
-print(funx(x=0:9))
-funx <- cfunction(signature(x="numeric"), foo, Rcpp=TRUE, verbose=FALSE)
-print(funx(x=0:9+.1))
-
-cat("\n=== vector<bool>\n")
-foo <- '
-std::vector<bool> bv = Rcpp::as< std::vector<bool> >(x) ;
-std::cout << "Flip the value of vector : ";
-for (size_t i=0; i<bv.size(); i++) {
-    bv[i].flip() ;
-}
-return(Rcpp::wrap( bv ));
-'
-funx <- cfunction(signature(x="logical"), foo, Rcpp=TRUE, verbose=FALSE)
-print(funx(x=c(TRUE,FALSE)))
-funx <- cfunction(signature(x="raw"), foo, Rcpp=TRUE, verbose=FALSE)
-print(funx(x=as.raw(0:9)))
-funx <- cfunction(signature(x="integer"), foo, Rcpp=TRUE, verbose=FALSE)
-print(funx(x=0:9))
-funx <- cfunction(signature(x="numeric"), foo, Rcpp=TRUE, verbose=FALSE)
-print(funx(x=as.numeric(0:9)))
-
-
-cat("\n===String Vector\n")
-foo <- '
-        std::vector<std::string> iv = Rcpp::as< std::vector<std::string> >(x);
-	std::cout << "Returning twice the value of vector : ";
-        for (size_t i=0; i<iv.size(); i++) {
-            iv[i] = iv[i] + iv[i];
-        }
- 	return(Rcpp::wrap( iv ));
-        '
-funx <- cfunction(signature(x="character"), foo, Rcpp=TRUE, verbose=FALSE)
-print(funx(x=c("foo", "bar")))
-
-### using std::set
-cat("\n=== set<int>\n")
-foo <- '
-std::set<int> iv ;
-iv.insert( 0 ) ;
-iv.insert( 1 ) ;
-iv.insert( 0 ) ;
-return Rcpp::wrap( iv );'
-funx <- cfunction(signature(), foo, Rcpp=TRUE, verbose=FALSE, includes = "#include <set>" )
-print(res <- funx())
-stopifnot( identical( res, 0:1 ) )
-
-cat("\n=== set<double>\n")
-foo <- '
-std::set<double> ds;
-ds.insert( 0.0 );
-ds.insert( 1.0 );
-ds.insert( 0.0 );
-return(Rcpp::wrap( ds )); '
-funx <- cfunction(signature(), foo, Rcpp=TRUE, verbose=FALSE, includes = "#include <set>")
-print( res <- funx() )
-stopifnot( identical( res, as.numeric(0:1)))
-
-cat("\n=== set<raw>\n")
-foo <- '
-std::set<Rbyte> bs ;
-bs.insert( (Rbyte)0 ) ;
-bs.insert( (Rbyte)1 ) ;
-bs.insert( (Rbyte)0 ) ;
-return(Rcpp::wrap( bs )); '
-funx <- cfunction(signature(), foo, Rcpp=TRUE, verbose=FALSE, includes = "#include <set>")
-print( res <- funx() )
-stopifnot( identical( res, as.raw(0:1)))
-
-cat("\n=== set<string> \n")
-foo <- '
-std::set<std::string> ss ;
-ss.insert( "foo" ) ;
-ss.insert( "bar" ) ;
-ss.insert( "foo" ) ;
-return(Rcpp::wrap( ss )); '
-funx <- cfunction(signature(), foo, Rcpp=TRUE, verbose=FALSE, include = "#include <set>" )
-print( res <- funx() )
-stopifnot( identical( res, c("bar","foo")) )
-
-
-#========= attributes
-
-funx <- cfunction(
-	signature(x="data.frame"), '
-std::vector<std::string> iv = Rcpp::RObject(x).attributeNames();
-return(Rcpp::wrap( iv ));
-', Rcpp=TRUE, verbose=FALSE)
-res <- funx( iris )
-stopifnot( all( c("names", "row.names", "class" ) %in% res ) )
-
-funx <- cfunction(signature(x="data.frame"), '
-bool has_class = Rcpp::RObject(x).hasAttribute( "class" ) ;
-return Rcpp::wrap( has_class ) ;
-', Rcpp=TRUE, verbose=FALSE)
-res <- funx( iris )
-stopifnot( res )
-
-funx <- cfunction(signature(x="data.frame"), '
-return Rcpp::RObject(x).attr( "row.names" ) ;
-', Rcpp=TRUE, verbose=FALSE)
-res <- funx( iris )
-stopifnot( identical(res, 1:150) )
-
-#============ NULL
-funx <- cfunction(signature(x="ANY"), '
-bool is_null = Rcpp::RObject(x).isNULL() ;
-return Rcpp::wrap( is_null ) ;
-', Rcpp=TRUE, verbose=FALSE)
-res <- funx( iris )
-stopifnot( !res )
-res <- funx( NULL )
-stopifnot( res )
-
-
-

Modified: pkg/src/RcppDoxygenExamples.h
===================================================================
--- pkg/src/RcppDoxygenExamples.h	2010-02-07 16:32:01 UTC (rev 627)
+++ pkg/src/RcppDoxygenExamples.h	2010-02-07 16:34:37 UTC (rev 628)
@@ -55,7 +55,7 @@
 //! Four simple examples of how to combine Rcpp and an external library 
 //! (where we use the GNU GSL) using inline. 
 
-//! \example RcppInline/RcppSexpTests.r  
+//! \example RcppInline/RObject.r  
 //! A number of examples on how to use wrap() to automatically convert data types.
 
 //! \example RcppInline/RcppSimpleExample.r



More information about the Rcpp-commits mailing list