std::greater_equal<folly::propagate_const<Pointer>>::operator()

Compare two wrapped pointers using std::greater_equal.

Synopsis

Declared in <folly/lang/PropagateConst.h>

constexpr
bool
operator()(
    folly::propagate_const<Pointer> const& a,
    folly::propagate_const<Pointer> const& b);

Return Value

true if a's pointer is not less than b's pointer.

Parameters

NameDescription
aThe left-hand wrapper.
bThe right-hand wrapper.