A look at C++14, part 1
[Posted March 28, 2013 by corbet]
The "Meeting C++" blog
looks
at some proposed changes to the C++ language to be considered in
April. "
It is proposed to add a library for pipelines to the C++
Standard, that such a pipeline could be implemented in C++ as such:
(pipeline::from(input_queue) |
bind(grep, "^Error") |
bind(vgrep, "test@example.com") |
bind(sed, "'s/^Error:.*Message: //") |
output_queue).run(&threadpool);
(
Log in to post comments)