InputNodeBody#
[req.input_node_body]
A type Body satisfies InputNodeBody if it meets the following requirements:
InputNodeBody Requirements: Pseudo-Signature, Semantics
- 
Body::~Body()#
 Destructor.
- 
Output Body::operator()(oneapi::tbb::flow_control &fc)#
 Requirements: The type
Outputmust be the same as the template type argumentOutputof theinput_nodeinstance in which theBodyobject is passed during construction.Applies body to generate the next item. Call
fc.stop()when new element cannot be generated. BecauseOutputneeds to be returned,Bodymay return any valid value ofOutput, to be immediately discarded.