| 1238 | : base(fmt, next_arg_id), num_args_(num_args), types_(types) {} |
| 1239 | |
| 1240 | constexpr auto num_args() const -> int { return num_args_; } |
| 1241 | constexpr auto arg_type(int id) const -> type { return types_[id]; } |
| 1242 | |
| 1243 | FMT_CONSTEXPR auto next_arg_id() -> int { |