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

Function runit_CharacterMatrix_column

inst/tinytest/cpp/Matrix.cpp:174–180  ·  view source on GitHub ↗

[[Rcpp::export]]

Source from the content-addressed store, hash-verified

172
173// [[Rcpp::export]]
174std::string runit_CharacterMatrix_column( CharacterMatrix m){
175 CharacterMatrix::Column col = m.column(0) ;
176 std::string res(
177 std::accumulate( col.begin(), col.end(), std::string() )
178 ) ;
179 return res ;
180}
181
182// [[Rcpp::export]]
183std::string runit_CharacterMatrix_column_const( const CharacterMatrix m){

Callers

nothing calls this directly

Calls 3

columnMethod · 0.80
beginMethod · 0.45
endMethod · 0.45

Tested by

no test coverage detected