MCPcopy Create free account
hub / github.com/CppCXY/EmmyLuaCodeStyle / equal

Method equal

3rd/wildcards/include/cx/tuple.hpp:120–123  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

118{
119 template <typename... Types1, typename... Types2>
120 constexpr static bool equal(const tuple<Types1...>& lhs, const tuple<Types2...>& rhs)
121 {
122 return get<Index>(lhs) == get<Index>(rhs) && tuples<Index - 1>::equal(lhs, rhs);
123 }
124};
125
126template <>

Callers

nothing calls this directly

Calls 1

equalFunction · 0.70

Tested by

no test coverage detected