Bitwise disjunction operators
Synopses
Declared in <arith_uint256.h>
Combine two sets of permission flags with a bitwise OR.
constexpr
NetPermissionFlags
operator|(
NetPermissionFlags a,
NetPermissionFlags b);
Bitwise OR of two flag names.
Bitwise OR of two flag sets.
Returns the bitwise OR of two big integers.
base_uint
operator|(
base_uint const& a,
base_uint const& b);
Returns the bitwise OR of two big integers.
base_uint<256>
operator|(
base_uint<256> const& a,
base_uint<256> const& b);
Return Value
-
The union of both flag sets.
-
A flag set holding both flags.
-
The union of a and b.
-
The bitwise OR of
aandb.
Parameters
Name |
Description |
a |
The left‐hand flag set. |
b |
The right‐hand flag set. |
f1 |
The first flag name. |
f2 |
The second flag name. |
Created with MrDocs