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

Function make_charsexp__impl__cstring

inst/include/Rcpp/internal/wrap.h:57–59  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

55 return make_charsexp__impl__wstring(st.data());
56 }
57 inline SEXP make_charsexp__impl__cstring(const char* data) {
58 return Rf_mkChar(data);
59 }
60 inline SEXP make_charsexp__impl__cstring(char data) {
61 char x[2]; x[0] = data; x[1] = '\0';
62 return Rf_mkChar(x);

Callers 1

make_charsexp__implFunction · 0.85

Calls 1

sizeMethod · 0.45

Tested by

no test coverage detected