bitwise shift-left operation
The first operand (must be positive integer) is shifted left by the number of bits specified by the second operandt, that must be a positive integer, too.
There is no restriction in the size of the integer numbers!
std::shift_right | bitwise shift-right operation |
std::bit_and | bitwise and operation |
std::bit_or | bitwise inclusive or operation |
std::bit_xor | bitwise exclusive or operation |
std_types::positive_integer | returns the left-shifted value |