~~~ Comparison ~~~ : FAMILY0(int, compare)
| 166 | public: |
| 167 | // ~~~ Comparison ~~~ : FAMILY0(int, compare) |
| 168 | static constexpr int compare(const TSelf& s1, const TSelf& s2) noexcept { |
| 169 | return s1.AsStringView().compare(s2.AsStringView()); |
| 170 | } |
| 171 | |
| 172 | static constexpr int compare(const TCharType* p, const TSelf& s2) noexcept { |
| 173 | TCharType null{0}; |
nothing calls this directly
no test coverage detected