[[Rcpp::export]]
| 630 | |
| 631 | // [[Rcpp::export]] |
| 632 | List character_create_(){ |
| 633 | List output(2); |
| 634 | output[0] = CharacterVector::create( "foo", "bar" ) ; |
| 635 | output[1] = CharacterVector::create( |
| 636 | _["foo"] = "bar", |
| 637 | _["bar"] = "foo" |
| 638 | ) ; |
| 639 | return output ; |
| 640 | } |
| 641 | |
| 642 | // [[Rcpp::export]] |
| 643 | List complex_binary_sugar(ComplexVector xx, ComplexVector yy){ |
nothing calls this directly
no outgoing calls
no test coverage detected