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

Function operator<

include/common/optional.h:1291–1294  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1289
1290template< typename T, typename U >
1291inline optional_constexpr bool operator<( optional<T> const & x, optional<U> const & y )
1292{
1293 return (!y) ? false : (!x) ? true : *x < *y;
1294}
1295
1296template< typename T, typename U >
1297inline optional_constexpr bool operator>( optional<T> const & x, optional<U> const & y )

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected