On this page
std::range_format
Defined in header <format> |
||
---|---|---|
|
(since C++23) |
Specifies how a range should be formatted.
Constant | Explanation |
---|---|
disabled |
disallows range default formatter to format range |
map |
allows to format range as map representation with modified brackets "{" , "}" and separator ": " for underlying pair-like types in the following format:{ key-1 : value-1, ..., key-n : value-n } |
set |
allows to format range as set representation with modified brackets "{" and "}" in the following format:{ key-1, ..., key-n } |
sequence |
allows to format range as sequence representation with default brackets "[" , "]" and separator ", " in the following format:[ element-1, ..., element-n ] |
string |
allows to format range as string |
debug_string |
allows to format range as escaped string |
See also
(C++20)
|
defines formatting rules for a given type (class template) |
(C++23)
|
selects a suited std::range_format for a range(variable template) |
© cppreference.com
Licensed under the Creative Commons Attribution-ShareAlike Unported License v3.0.
https://en.cppreference.com/w/cpp/utility/format/range_format