FunctionNodeBody#
[req.function_node_body]
A type Body satisfies FunctionNodeBody if it meets the following requirements:
FunctionNodeBody Requirements: Pseudo-Signature, Semantics
-
Body::~Body()#
Destructor.
-
Output Body::operator()(const Input &v)#
Requirements: The
Input
andOutput
types must be the same as theInput
andOutput
template type arguments of thefunction_node
instance in which theBody
object is passed during construction.Performs operation on
v
and returns a value of typeOutput
.