xieite ::dump ()
Defined in header <xieite/io/dump.hpp>
Prints values separated by a delimiter.
Essentially just
std ::println ()
with its format string generated automatically.Originally based on [P2879].
Declaration
#0Prints totemplate <xieite ::fixed_str delim =" " ,bool newline =true >void dump (std ::FILE * file ,auto&&... args )noexcept ;
file
.#1
Prints totemplate <xieite ::fixed_str delim =" " ,bool newline =true >void dump (auto&&... args )noexcept ;
stdout
.Example
Output:int main () {int x =418 ;double y =3.14159 ;xieite ::dump (x ,"test" ,y ); }
[View in Compiler Explorer]418 test 3.14159