| 205 | } |
| 206 | |
| 207 | static constexpr bool equal(const TSelf& s1, const TSelf& s2) noexcept { |
| 208 | return s1.AsStringView() == s2.AsStringView(); |
| 209 | } |
| 210 | |
| 211 | static constexpr bool equal(const TSelf& s1, const TCharType* p) noexcept { |
| 212 | if (p == nullptr) { |
nothing calls this directly
no test coverage detected