| 910 | } |
| 911 | |
| 912 | bool String::operator<(const String &str) const |
| 913 | { |
| 914 | return ( dStrnatcmp( _string->utf8(), str._string->utf8() ) < 0 ); |
| 915 | } |
| 916 | |
| 917 | bool String::operator>(const String &str) const |
| 918 | { |
nothing calls this directly
no test coverage detected