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
Output
must be the same as the template type argumentOutput
of theinput_node
instance in which theBody
object is passed during construction.Applies body to generate the next item. Call
fc.stop()
when new element cannot be generated. BecauseOutput
needs to be returned,Body
may return any valid value ofOutput
, to be immediately discarded.