Re: [Rcpp-devel] How to create list of list without known structure

2014-05-06 Thread Florian Burkart
Perfect, thank you On Tue, May 6, 2014 at 1:01 PM, Romain Francois wrote: > > Le 6 mai 2014 à 09:35, Florian Burkart a > écrit : > > > Hi, > > > > I have been creating lists of lists with > > > > return Rcpp::List::create(Rcpp::Named("vec") = someVector, > > Rcpp::Named

Re: [Rcpp-devel] How to create list of list without known structure

2014-05-06 Thread Romain Francois
Le 6 mai 2014 à 09:35, Florian Burkart a écrit : > Hi, > > I have been creating lists of lists with > > return Rcpp::List::create(Rcpp::Named("vec") = someVector, > Rcpp::Named("lst") = someList, > Rcpp::Named("vec2") = someOtherVector); >

Re: [Rcpp-devel] How to create list of list without known structure

2014-05-06 Thread Dirk Eddelbuettel
Hi Florian, On 6 May 2014 at 09:35, Florian Burkart wrote: | Hi, | | I have been creating lists of lists with | | return Rcpp::List::create(Rcpp::Named("vec") = someVector, |                           Rcpp::Named("lst") = someList, |                           Rcpp::Named("vec2") = someOtherVect