12 template<concepts::Encoding Enc>
13 struct VPresentEncodedFunction {
14 using View = container::string::StringViewImpl<Enc>;
15 using Str = container::string::StringImpl<Enc>;
17 template<concepts::FormatArg Arg>
18 constexpr auto operator()(View format, FormatArgs<Arg> args)
const ->
Result<Str> {
19 auto context = FormatContext<Enc> {};
21 return util::move(context).output();
26template<concepts::Encoding Enc>
#define DI_TRY(...)
Definition monad_try.h:13
Expected< T, Error > Result
Definition result.h:8