MCPcopy Create free account
hub / github.com/FirebirdSQL/firebird / operator==

Function operator==

extern/boost/boost/array.hpp:323–325  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

321 // comparisons
322 template<class T, std::size_t N>
323 bool operator== (const array<T,N>& x, const array<T,N>& y) {
324 return std::equal(x.begin(), x.end(), y.begin());
325 }
326 template<class T, std::size_t N>
327 bool operator< (const array<T,N>& x, const array<T,N>& y) {
328 return std::lexicographical_compare(x.begin(),x.end(),y.begin(),y.end());

Callers

nothing calls this directly

Calls 3

equalFunction · 0.50
beginMethod · 0.45
endMethod · 0.45

Tested by

no test coverage detected