MCPcopy Create free account
hub / github.com/CppCXY/EmmyLuaCodeStyle / operator==

Function operator==

3rd/wildcards/include/cx/string_view.hpp:75–78  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

73
74template <typename T>
75constexpr bool operator==(const basic_string_view<T>& lhs, const basic_string_view<T>& rhs)
76{
77 return equal(lhs.begin(), lhs.end(), rhs.begin(), rhs.end());
78}
79
80template <typename T>
81constexpr bool operator!=(const basic_string_view<T>& lhs, const basic_string_view<T>& rhs)

Callers

nothing calls this directly

Calls 3

equalFunction · 0.70
beginMethod · 0.45
endMethod · 0.45

Tested by

no test coverage detected