Tagged Questions
3
votes
7answers
2k views
Function that prints something to std::ostream and returns std::ostream?
I want to write a function that outputs something to a ostream that's passed in, and return the stream, like this:
std::ostream& MyPrint(int val, std::ostream* out) {
*out << val;
...