#include <asmgrader/common/aliases.hpp>
#include <asmgrader/common/formatters/debug.hpp>
#include <fmt/base.h>
#include <fmt/format.h>
#include <gsl/util>
#include <concepts>
#include <cstddef>
#include <stdexcept>
Go to the source code of this file.
◆ DEF_BINARY_ASSIGN_OP
| #define DEF_BINARY_ASSIGN_OP |
( |
| op | ) |
|
Value: constexpr Byte& operator op(const Byte & rhs) { \
value op rhs.value; \
return *this; \
}
◆ DEF_BINARY_OP
| #define DEF_BINARY_OP |
( |
| op | ) |
|
Value: constexpr Byte operator op(const Byte& rhs) const { return static_cast<u8>(value op rhs.value); }