| 623 | } |
| 624 | |
| 625 | bool operator>(const Rcpp::String& other) const { |
| 626 | return strcmp(get_cstring(), other.get_cstring()) > 0; |
| 627 | } |
| 628 | |
| 629 | bool operator==(SEXP other) const { |
| 630 | return get_sexp() == other; |
nothing calls this directly
no test coverage detected