About 98 results
Open links in new tab
  1. std::format - cppreference.com

    Format args according to the format string fmt, and return the result as a string. If present, loc is used for locale-specific formatting.

  2. Standard library header <format> (C++20) - cppreference.com

    Standard library header <format> (C++20) This header is part of the text processing library.

  3. std::format_to - cppreference.com

    Format args according to the format string fmt, and write the result to the output iterator out. If present, loc is used for locale-specific …

  4. Standard format specification (since C++20) - cppreference.com

    For basic types and string types, the format specification is based on the format specification in Python. The syntax of format …

  5. Formatting library (since C++20) - cppreference.com

    Format specification specifies how objects are formatted with different kinds of options. The formatting of objects of basic types and …

  6. std::format_to_n, std::format_to_n_result - cppreference.com

    Format args according to the format string fmt, and write the result to the output iterator out. At most n characters are written. If …

  7. std::vformat - cppreference.com

    std:: vformat ... Format arguments held by args according to the format string fmt, and return the result as a string. If present, loc is …

  8. std::formatter - cppreference.com

    Formatters for other pointers and pointers to members are disabled. Specializations such as std::formatter<wchar_t, char> and …

  9. std::basic_format_string, std::format_string, std::wformat_string ...

    The alias templates format_string and wformat_string use std::type_identity_t to inhibit template argument deduction. Typically, when …

  10. std::formattable - cppreference.com

    The concept formattable specifies that std::formatter<std::remove_cvref_t<T>, CharT> meets the requirements of BasicFormatter …