MCPcopy Create free account
hub / github.com/BehaviorTree/BehaviorTree.CPP / operator^

Function operator^

3rdparty/cppzmq/zmq.hpp:1047–1050  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1045 return detail::enum_bit_and(a, b);
1046}
1047constexpr send_flags operator^(send_flags a, send_flags b) noexcept
1048{
1049 return detail::enum_bit_xor(a, b);
1050}
1051constexpr send_flags operator~(send_flags a) noexcept
1052{
1053 return detail::enum_bit_not(a);

Callers

nothing calls this directly

Calls 1

enum_bit_xorFunction · 0.85

Tested by

no test coverage detected