| 742 | } |
| 743 | |
| 744 | nssv_constexpr int compare( size_type pos1, size_type n1, basic_string_view other ) const // (2) |
| 745 | { |
| 746 | return substr( pos1, n1 ).compare( other ); |
| 747 | } |
| 748 | |
| 749 | nssv_constexpr int compare( size_type pos1, size_type n1, basic_string_view other, size_type pos2, size_type n2 ) const // (3) |
| 750 | { |
no test coverage detected