#include <cstddef>
#include <cstdint>
#include <type_traits>
Go to the source code of this file.
|
| template<class _IntType , std::enable_if_t< std::is_integral_v< _IntType >, int > = 0> |
| constexpr Byte | CeresEngine::operator<< (const Byte arg, const _IntType shift) noexcept |
| |
| template<class _IntType , std::enable_if_t< std::is_integral_v< _IntType >, int > = 0> |
| constexpr Byte | CeresEngine::operator>> (const Byte arg, const _IntType shift) noexcept |
| |
| constexpr Byte | CeresEngine::operator| (const Byte left, const Byte right) noexcept |
| |
| constexpr Byte | CeresEngine::operator& (const Byte left, const Byte right) noexcept |
| |
| constexpr Byte | CeresEngine::operator^ (const Byte left, const Byte right) noexcept |
| |
| constexpr Byte | CeresEngine::operator~ (const Byte arg) noexcept |
| |
| template<class _IntType , std::enable_if_t< std::is_integral_v< _IntType >, int > = 0> |
| constexpr Byte & | CeresEngine::operator<<= (Byte &arg, const _IntType shift) noexcept |
| |
| template<class _IntType , std::enable_if_t< std::is_integral_v< _IntType >, int > = 0> |
| constexpr Byte & | CeresEngine::operator>>= (Byte &arg, const _IntType shift) noexcept |
| |
| constexpr Byte & | CeresEngine::operator|= (Byte &left, const Byte right) noexcept |
| |
| constexpr Byte & | CeresEngine::operator&= (Byte &left, const Byte right) noexcept |
| |
| constexpr Byte & | CeresEngine::operator^= (Byte &left, const Byte right) noexcept |
| |
| template<class _IntType , std::enable_if_t< std::is_integral_v< _IntType >, int > = 0> |
| constexpr _IntType | CeresEngine::to_integer (const Byte arg) noexcept |
| |