folly::operator>=

Orders two Expected values.

Synopsis

Declared in <folly/Expected.h>

template<
    class Value,
    class Error,
    bool FollyRequires1966 = false>
bool
operator>=(
    Expected<Value, Error> const& lhs,
    Expected<Value, Error> const& rhs);

Return Value

true if lhs does not order before rhs.

Parameters

NameDescription
lhsThe left-hand Expected.
rhsThe right-hand Expected.