MCPcopy Create free account
hub / github.com/boostorg/pfr / operator>

Function operator>

test/core/run/constexpr_ops.cpp:30–30  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

28constexpr bool operator< (test_union l, test_union r) noexcept { return l.i < r.i; }
29constexpr bool operator<=(test_union l, test_union r) noexcept { return l.i <= r.i; }
30constexpr bool operator> (test_union l, test_union r) noexcept { return l.i > r.i; }
31constexpr bool operator>=(test_union l, test_union r) noexcept { return l.i >= r.i; }
32constexpr bool operator==(test_union l, test_union r) noexcept { return l.i == r.i; }
33constexpr bool operator!=(test_union l, test_union r) noexcept { return l.i != r.i; }

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected