| 324 | inline bool operator<=(const ::String &inRHS) const { return compare(inRHS)<=0; } |
| 325 | inline bool operator>(const ::String &inRHS) const { return compare(inRHS)>0; } |
| 326 | inline bool operator>=(const ::String &inRHS) const { return compare(inRHS)>=0; } |
| 327 | |
| 328 | inline bool operator<(const Dynamic &inRHS) const { return compare(inRHS)<0; } |
| 329 | inline bool operator<=(const Dynamic &inRHS) const { return compare(inRHS)<=0; } |