std::format - how to best use with a runtime fmt string? #4099
-
seems undocumented |
Beta Was this translation helpful? Give feedback.
Answered by
sylveon
Oct 17, 2023
Replies: 2 comments 1 reply
-
std::vformat |
Beta Was this translation helpful? Give feedback.
0 replies
-
for |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Because the format string is provided at runtime, it makes sense for the format args to also be provided at runtime and not statically determined, that's what std::make_format_args is for.