AsmGrader 0.0.0
Loading...
Searching...
No Matches
asmgrader::detail::IsUnwrappable Concept Reference

#include <asm_function.hpp>

Concept definition

template<typename T>
concept asmgrader::detail::IsUnwrappable = requires(const T& val) {
{ val.has_value() } -> std::same_as<bool>;
{ val.value() };
}
Definition asm_function.hpp:126