Hi everyone,

I am porting some code from the old API to the new API like in the
following example.

-      SEXP ret = R_NilValue;
-      RcppResultSet rs;
-      rs.add("foo1", bar1);
-      rs.add("foo2", bar2);
-      ret = rs.getReturnList();

+     SEXP ret = R_NilValue;
+     ret = Rcpp::List::create(Rcpp::Named("foo1")  = bar1
+                                       Rcpp::Named("foo2")  = bar2);

This works well if I have less than 20 elements.

But how can I add new elements to the list, including assigning names ?
Is there an alternative way to create the list without using
Rcpp::List::create ?


Thanks

-Dominique
_______________________________________________
Rcpp-devel mailing list
[email protected]
https://lists.r-forge.r-project.org/cgi-bin/mailman/listinfo/rcpp-devel

Reply via email to