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
Input
andOutput
types must be the same as theInput
andOutput
template type arguments of thefucntion_node
instance in whichBody
object is passed during construction.Perform operation on
v
and return value of typeOutput
.