MCPcopy Create free account
hub / github.com/JDAI-CV/DNNLibrary / operator<

Function operator<

include/common/expected.hpp:159–161  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

157}
158template <class E>
159constexpr bool operator<(const unexpected<E> &lhs, const unexpected<E> &rhs) {
160 return lhs.value() < rhs.value();
161}
162template <class E>
163constexpr bool operator<=(const unexpected<E> &lhs, const unexpected<E> &rhs) {
164 return lhs.value() <= rhs.value();

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected