|
constexpr byte | std::operator| (byte l, byte r) noexcept |
|
constexpr byte | std::operator& (byte l, byte r) noexcept |
|
constexpr byte | std::operator^ (byte l, byte r) noexcept |
|
constexpr byte | std::operator~ (byte b) noexcept |
|
constexpr byte & | std::operator|= (byte &l, byte r) noexcept |
|
constexpr byte & | std::operator&= (byte &l, byte r) noexcept |
|
constexpr byte & | std::operator^= (byte &l, byte r) noexcept |
|
template<class IntegerType > |
constexpr enable_if_t< is_integral< IntegerType >::value, IntegerType > | std::to_integer (byte b) noexcept |
|
template<class IntegerType > |
constexpr enable_if_t< is_integral< IntegerType >::value, byte > | std::operator<< (byte b, IntegerType shift) noexcept |
|
template<class IntegerType > |
constexpr enable_if_t< is_integral< IntegerType >::value, byte > | std::operator>> (byte b, IntegerType shift) noexcept |
|
template<class IntegerType > |
constexpr enable_if_t< is_integral< IntegerType >::value, byte & > | std::operator<<= (byte &b, IntegerType shift) noexcept |
|
template<class IntegerType > |
constexpr enable_if_t< is_integral< IntegerType >::value, byte & > | std::operator>>= (byte &b, IntegerType shift) noexcept |
|