| 915 | } |
| 916 | |
| 917 | bool String::operator>(const String &str) const |
| 918 | { |
| 919 | return ( dStrnatcmp( _string->utf8(), str._string->utf8() ) > 0 ); |
| 920 | } |
| 921 | |
| 922 | bool String::operator<=(const String &str) const |
| 923 | { |
nothing calls this directly
no test coverage detected