#ifndef AL_OPTIONAL_H #define AL_OPTIONAL_H #include namespace al { constexpr auto nullopt = std::nullopt; template using optional = std::optional; using std::make_optional; } // namespace al #endif /* AL_OPTIONAL_H */