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

Function named_stretchy_list

inst/tinytest/cpp/misc.cpp:168–174  ·  view source on GitHub ↗

[[Rcpp::export]]

Source from the content-addressed store, hash-verified

166
167// [[Rcpp::export]]
168StretchyList named_stretchy_list() {
169 StretchyList out;
170 out.push_back( _["b"] = 1 );
171 out.push_front( _["a"] = "foo" );
172 out.push_back( _["c"] = 3.2 );
173 return out;
174}
175
176// [[Rcpp::export]]
177void test_stop_variadic() {

Callers

nothing calls this directly

Calls 2

push_backMethod · 0.45
push_frontMethod · 0.45

Tested by

no test coverage detected