MCPcopy Create free account
hub / github.com/fmtlib/fmt / operator|

Method operator|

include/fmt/format.h:321–324  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

319 return lhs.hi_ != rhs.hi_ ? lhs.hi_ > rhs.hi_ : lhs.lo_ > rhs.lo_;
320 }
321 friend constexpr auto operator|(const uint128& lhs, const uint128& rhs)
322 -> uint128 {
323 return {lhs.hi_ | rhs.hi_, lhs.lo_ | rhs.lo_};
324 }
325 friend constexpr auto operator&(const uint128& lhs, const uint128& rhs)
326 -> uint128 {
327 return {lhs.hi_ & rhs.hi_, lhs.lo_ & rhs.lo_};

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected