| 596 | } |
| 597 | |
| 598 | bool operator<(const Rcpp::String& other) const { |
| 599 | return strcmp(get_cstring(), other.get_cstring()) < 0; |
| 600 | } |
| 601 | |
| 602 | bool operator==(const Rcpp::String& other) const { |
| 603 | return get_sexp() == other.get_sexp(); |
nothing calls this directly
no test coverage detected