| 774 | return StringType(&c_str()[pos], n); |
| 775 | } |
| 776 | int compare(const StringType& str) const |
| 777 | { |
| 778 | return compare(str.c_str(), str.length()); |
| 779 | } |
| 780 | int compare(size_type p0, size_type n0, const StringType& str) |
| 781 | { |
| 782 | return compare(p0, n0, str.c_str(), str.length()); |