MCPcopy Create free account
hub / github.com/davisking/dlib / operator>=

Function operator>=

dlib/optional.h:821–824  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

819
820 template <class T, class U>
821 constexpr bool operator>=(const optional<T> &lhs, const optional<U> &rhs) noexcept(noexcept(std::declval<T>() >= std::declval<T>()))
822 {
823 return !(lhs < rhs);
824 }
825
826 template <class T, class U>
827 constexpr bool operator>(const optional<T> &lhs, const optional<U> &rhs) noexcept(noexcept(std::declval<T>() > std::declval<T>()))

Callers

nothing calls this directly

Calls 1

has_valueMethod · 0.80

Tested by

no test coverage detected