| 1109 | // ======= COMPARE ======= |
| 1110 | |
| 1111 | int basic_string::compare(const basic_string& str) const { return fl::strcmp(c_str(), str.c_str()); } |
| 1112 | |
| 1113 | int basic_string::compare(fl::size pos1, fl::size count1, const basic_string& str) const { |
| 1114 | if (pos1 > mLength) { |