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

Method ModuleWorld

inst/tinytest/cpp/Module.cpp:63–63  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

61class ModuleWorld {
62public:
63 ModuleWorld() : msg("hello") {}
64 void set(std::string msg_) { this->msg = msg_; }
65 void set_ref(std::string& msg_) { this->msg = msg_; }
66 void set_const_ref(const std::string& msg_) { this->msg = msg_; }

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected