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

Function runit_CharacterMatrix_column_const

inst/tinytest/cpp/Matrix.cpp:183–189  ·  view source on GitHub ↗

[[Rcpp::export]]

Source from the content-addressed store, hash-verified

181
182// [[Rcpp::export]]
183std::string runit_CharacterMatrix_column_const( const CharacterMatrix m){
184 CharacterMatrix::ConstColumn col = m.column(0) ;
185 std::string res(
186 std::accumulate( col.begin(), col.end(), std::string() )
187 ) ;
188 return res ;
189}
190
191// [[Rcpp::export]]
192IntegerVector runit_GenericMatrix_column( GenericMatrix m ){

Callers

nothing calls this directly

Calls 3

columnMethod · 0.80
beginMethod · 0.45
endMethod · 0.45

Tested by

no test coverage detected