[[Rcpp::export]]
| 157 | |
| 158 | // [[Rcpp::export]] |
| 159 | StretchyList 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]] |
| 168 | StretchyList named_stretchy_list() { |
nothing calls this directly
no test coverage detected