I have a fmt::dynamic_format_arg_store<fmt::format_context> args object which i populate with some variables.
I would like to be able to copy args into a new object args2 so that I can push back new variables while :
- maintaining all the variables of
args in args2
- without touching
args
Is that possible in any way?
- There is no copy constructor for
fmt::dynamic_format_arg_store. Could one be implemented?
- Can I convert fmt::dynamic_format_arg_store to fmt::basic_format_args, and extract the variables from there and push them back to a
fmt::dynamic_format_arg_store object?
I have a
fmt::dynamic_format_arg_store<fmt::format_context> argsobject which i populate with some variables.I would like to be able to copy
argsinto a new objectargs2so that I can push back new variables while :argsinargs2argsIs that possible in any way?
fmt::dynamic_format_arg_store. Could one be implemented?fmt::dynamic_format_arg_storeobject?