these operate directly on the external pointers, rather than looking up the property in the map // #nocov end
| 102 | // these operate directly on the external pointers, rather than |
| 103 | // looking up the property in the map // #nocov end |
| 104 | RCPP_FUN_3(SEXP, CppField__get, XP_Class cl, SEXP field_xp, SEXP obj) { |
| 105 | return cl->getProperty(field_xp, obj); |
| 106 | } |
| 107 | RCPP_FUN_4(SEXP, CppField__set, XP_Class cl, SEXP field_xp, SEXP obj, SEXP value) { |
| 108 | cl->setProperty(field_xp, obj, value); |
| 109 | return R_NilValue; |
nothing calls this directly
no test coverage detected