Skip to content

My first learning project for becoming up-to-date on modern C++ ('17).

Notifications You must be signed in to change notification settings

mgeck64/delimited_output

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

delimited_output

Provides a stream inserter that recursively outputs the contents of pairs, tuples and container-like objects.

Usage example:

vector<tuple<int, string, int>> tups = {{1, "Two", 3}, {4, "Five", 6}, {7, "Eight", 9}};
cout << delimited(tups) << endl;

Output:

(1, Two, 3), (4, Five, 6), (7, Eight, 9)

About

My first learning project for becoming up-to-date on modern C++ ('17).

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published