Namespaces
Variants
Views
Actions

Standard library header <print> (C++23)

From cppreference.com
< cpp‎ | header
Revision as of 23:49, 27 August 2022 by Space Mission (Talk | contribs)

 
 
Standard library headers
 

This header is part of the Input/Output library.

Functions

(C++23)
prints to stdout or a file stream using formatted representation of the arguments
(function template) [edit]
(C++23)
same as std::print except that each print is terminated by additional new line
(function template) [edit]
prints to Unicode capable stdout or a file stream using type-erased argument representation
(function) [edit]
prints to stdout or a file stream using type-erased argument representation
(function) [edit]

Synopsis

namespace std {
  // print functions
  template<class... Args>
    void print(/*format_string*/<Args...> fmt, Args&&... args);
  template<class... Args>
    void print(FILE* stream, /*format_string*/<Args...> fmt, Args&&... args);
 
  template<class... Args>
    void println(/*format_string*/<Args...> fmt, Args&&... args);
  template<class... Args>
    void println(FILE* stream, /*format_string*/<Args...> fmt, Args&&... args);
 
  void vprint_unicode(string_view fmt, format_args args);
  void vprint_unicode(FILE* stream, string_view fmt, format_args args);
 
  void vprint_nonunicode(string_view fmt, format_args args);
  void vprint_nonunicode(FILE* stream, string_view fmt, format_args args);
}

References

  • C++23 standard (ISO/IEC 14882:2024):
  • 31.7.4 Header <print> synopsis [print.syn]
  • 31.7.10 Print functions [print.fun]