AsmGrader 0.0.0
Loading...
Searching...
No Matches
asmgrader::MemoryReadSupported Concept Reference

#include <concepts.hpp>

Concept definition

template<typename T>
concept asmgrader::MemoryReadSupported = requires(std::uintptr_t address, MemoryIOBase& mio) {
{ MemoryIOSerde<T>::read(address, mio) } -> std::same_as<Result<T>>;
}
Definition concepts.hpp:23
static Result< T > read(std::uintptr_t address, MemoryIOBase &mio)
Definition memory_io_serde.hpp:79