c++ Programming Glossary: stream_op
Variadic template operator<< http://stackoverflow.com/questions/17868718/variadic-template-operator live example here template typename... args struct stream_op template typename... A typename B stream_op A... B operator.. args struct stream_op template typename... A typename B stream_op A... B operator stream_op A... a B b Do stuff So the following.. typename... A typename B stream_op A... B operator stream_op A... a B b Do stuff So the following occur with a as a stream_op..
|