Consider adding a formatter for std::expected<void, E>
:
template <typename E, typename Char> struct formatter<std::expected<void, E>, Char, std::enable_if_t<is_formattable<E, Char>::value>> { FMT_CONSTEXPR auto parse(parse_context<Char>& ctx) -> const Char* { return ctx.begin(); } template <typename FormatContext> auto format(const std::expected<void, E>& value, FormatContext& ctx) const -> decltype(ctx.out()) { auto out = ctx.out(); if (value.has_value()) { out = detail::write<Char>(out, "expected("); } else { out = detail::write<Char>(out, "unexpected("); out = detail::write_escaped_alternative<Char>(out, value.error()); } *out++ = ')'; return out; } };
Output
expected()
when there is no error
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4