| 2123 | #pragma region Matching Substrings |
| 2124 | |
| 2125 | bool contains(string_view other) const noexcept { return find(other) != npos; } |
| 2126 | bool contains(value_type character) const noexcept { return find(character) != npos; } |
| 2127 | bool contains(const_pointer other) const noexcept { return find(other) != npos; } |
| 2128 |