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

Function operator==

3rd/wildcards/include/cx/array.hpp:87–90  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

85
86template <typename T, std::size_t N>
87constexpr bool operator==(const array<T, N>& lhs, const array<T, N>& rhs)
88{
89 return equal(lhs.begin(), lhs.end(), rhs.begin(), rhs.end());
90}
91
92template <typename T, std::size_t N>
93constexpr bool operator!=(const array<T, N>& lhs, const array<T, N>& rhs)

Callers

nothing calls this directly

Calls 3

equalFunction · 0.70
beginMethod · 0.45
endMethod · 0.45

Tested by

no test coverage detected