operator>

Greater-than operators

Synopses

Declared in <pubkey.h>

Check whether the first feerate is strictly higher than the second.

bool
operator>(
    ByRatio const& a,
    ByRatio const& b) noexcept;
» more...

Order two public keys lexicographically by their serialized bytes.

bool
operator>(
    CPubKey const& a,
    CPubKey const& b);
» more...

Return Value

  • True if a's feerate is higher than b's.
  • true if a sorts after b.

Parameters

NameDescription
aThe first operand.
bThe second operand.