FunctionNodeBody¶
[req.function_node_body]
A type Body satisfies the FunctionNodeBody if it meets the following requirements:
FunctionNodeBody Requirements: Pseudo-Signature, Semantics
-
Body::~Body() Destructor.
-
void
operator=(const B&) Assignment.
-
Output
Body::operator()(const Input &v)¶ Requirements: The
InputandOutputtypes must be the same as theInputandOutputtemplate type arguments of thefucntion_nodeinstance in whichBodyobject is passed during construction.Perform operation on
vand return value of typeOutput.