[[Rcpp::export]]
| 3 | |
| 4 | // [[Rcpp::export]] |
| 5 | CharacterVector CharacterVector_wstring( ){ |
| 6 | CharacterVector res(2) ; |
| 7 | res[0] = L"foo" ; |
| 8 | res[0] += L"bar" ; |
| 9 | |
| 10 | res[1] = std::wstring( L"foo" ) ; |
| 11 | res[1] += std::wstring( L"bar" ) ; |
| 12 | |
| 13 | return res ; |
| 14 | } |
| 15 | |
| 16 | // [[Rcpp::export]] |
| 17 | std::wstring wstring_return(){ |
nothing calls this directly
no outgoing calls
no test coverage detected