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

Function operator<=

include/common/optional.h:1303–1306  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1301
1302template< typename T, typename U >
1303inline optional_constexpr bool operator<=( optional<T> const & x, optional<U> const & y )
1304{
1305 return !(y < x);
1306}
1307
1308template< typename T, typename U >
1309inline 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