[[Rcpp::export]]
| 479 | |
| 480 | // [[Rcpp::export]] |
| 481 | CharacterVector character_matrix_indexing_lhs( CharacterVector m ){ |
| 482 | for( size_t i=0 ; i<4; i++){ |
| 483 | m(i,i) = "foo" ; |
| 484 | } |
| 485 | return m ; |
| 486 | } |
| 487 | |
| 488 | // [[Rcpp::export]] |
| 489 | CharacterVector character_matrix_row_iteration_incr( CharacterMatrix m ){ |
nothing calls this directly
no outgoing calls
no test coverage detected