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

Function runit_islocked

inst/tinytest/cpp/Environment.cpp:66–73  ·  view source on GitHub ↗

[[Rcpp::export]]

Source from the content-addressed store, hash-verified

64
65// [[Rcpp::export]]
66void runit_islocked( Environment env ){
67 env.assign( "x1", 1 ) ;
68 env.assign( "x2", 10.0 ) ;
69 env.assign( "x3", std::string( "foobar" ) ) ;
70 env.assign( "x4", "foobar" ) ;
71 std::vector< std::string > aa(2) ; aa[0] = "foo" ; aa[1] = "bar" ;
72 env.assign( "x5", aa ) ;
73}
74
75// [[Rcpp::export]]
76bool runit_bindingIsActive( Environment env, std::string st ){

Callers

nothing calls this directly

Calls 1

assignMethod · 0.45

Tested by

no test coverage detected