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

Function operator>

include/common/optional.h:1297–1300  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1295
1296template< typename T, typename U >
1297inline optional_constexpr bool operator>( optional<T> const & x, optional<U> const & y )
1298{
1299 return (y < x);
1300}
1301
1302template< typename T, typename U >
1303inline 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