MCPcopy Create free account
hub / github.com/ChaiScript/ChaiScript / operator==

Function operator==

include/chaiscript/dispatchkit/short_alloc.hpp:143–148  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

141
142template <class T, std::size_t N, std::size_t A1, class U, std::size_t M, std::size_t A2>
143inline
144bool
145operator==(const short_alloc<T, N, A1>& x, const short_alloc<U, M, A2>& y) noexcept
146{
147 return N == M && A1 == A2 && &x.a_ == &y.a_;
148}
149
150template <class T, std::size_t N, std::size_t A1, class U, std::size_t M, std::size_t A2>
151inline

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected