MCPcopy Create free account
hub / github.com/fmtlib/fmt / compile_parse_context

Method compile_parse_context

include/fmt/base.h:1235–1238  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1233
1234 public:
1235 constexpr explicit compile_parse_context(basic_string_view<Char> fmt,
1236 int num_args, const type* types,
1237 int next_arg_id = 0)
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]; }

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected