![]() |
Home | Libraries | People | FAQ | More |
Pipe
A Pipe is a type grouping two functions that read a certain number of elements off a range and write another number of elements on another one, hence making it a many-to-many conversion facility.
input_type
Pipe::input_type
The type of elements the pipe converts from.
output_type
Pipe::output_type
The type of elements the pipe converts into.
max_output
Pipe::max_output
Optional MPL integral constant that states how many
elements may be added to out
at maximum in an ltr
or rtl
call.
p
begin
, end
out
Name | Expression | Type | Precondition | Semantics |
---|---|---|---|---|
Construction |
Pipe() |
Pipe |
Construct an instance of the type with default parameters. |
|
Left to right |
p.ltr(begin, end, out) |
std::pair<In, Out> |
|
Reads part of the [ |
Right to left |
p.rtl(begin, end, out) |
std::pair<In, Out> |
|
Reads part of the [ |