MCPcopy Create free account
hub / github.com/p-ranav/tabulate / operator<

Function operator<

include/tabulate/optional_lite.hpp:1266–1268  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1264
1265template <typename T, typename U>
1266inline optional_constexpr bool operator<(optional<T> const &x, optional<U> const &y) {
1267 return (!y) ? false : (!x) ? true : *x < *y;
1268}
1269
1270template <typename T, typename U>
1271inline 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