MCPcopy Create free account
hub / github.com/RcppCore/Rcpp / stretchy_list

Function stretchy_list

inst/tinytest/cpp/misc.cpp:159–165  ·  view source on GitHub ↗

[[Rcpp::export]]

Source from the content-addressed store, hash-verified

157
158// [[Rcpp::export]]
159StretchyList stretchy_list() {
160 StretchyList out;
161 out.push_back( 1 );
162 out.push_front( "foo" );
163 out.push_back( 3.2 );
164 return out;
165}
166
167// [[Rcpp::export]]
168StretchyList named_stretchy_list() {

Callers

nothing calls this directly

Calls 2

push_backMethod · 0.45
push_frontMethod · 0.45

Tested by

no test coverage detected