#include <core.h>
Inherited by basic_printf_parse_context< Char >, and compile_parse_context< Char >.
|
using | char_type = Char |
|
using | iterator = const Char * |
|
|
constexpr | basic_format_parse_context (basic_string_view< Char > format_str, int next_arg_id=0) |
|
constexpr auto | begin () const noexcept -> iterator |
|
constexpr auto | end () const noexcept -> iterator |
|
FMT_CONSTEXPR void | advance_to (iterator it) |
|
FMT_CONSTEXPR auto | next_arg_id () -> int |
|
FMT_CONSTEXPR void | check_arg_id (int id) |
|
FMT_CONSTEXPR void | check_arg_id (basic_string_view< Char >) |
|
FMT_CONSTEXPR void | check_dynamic_spec (int arg_id) |
|
template<typename Char>
class basic_format_parse_context< Char >
\rst Parsing context consisting of a format string range being parsed and an argument counter for automatic indexing. You can use the format_parse_context
type alias for char
instead. \endrst
◆ advance_to()
Advances the begin iterator to it
.
◆ begin()
Returns an iterator to the beginning of the format string range being parsed.
◆ check_arg_id()
Reports an error if using the automatic argument indexing; otherwise switches to the manual indexing.
◆ end()
Returns an iterator past the end of the format string range being parsed.
◆ next_arg_id()
Reports an error if using the manual argument indexing; otherwise returns the next argument index and switches to the automatic indexing.
The documentation for this class was generated from the following file: