| FunctionAnnotation.ForwardedFields |
The ForwardedFields annotation declares fields which are never modified by the annotated
function and which are forwarded at the same position to the output or unchanged copied to
another position in the output.
|
| FunctionAnnotation.ForwardedFieldsFirst |
The ForwardedFieldsFirst annotation declares fields of the first input of a function which
are never modified by the annotated function and which are forwarded at the same position to
the output or unchanged copied to another position in the output.
|
| FunctionAnnotation.ForwardedFieldsSecond |
The ForwardedFieldsSecond annotation declares fields of the second input of a function which
are never modified by the annotated function and which are forwarded at the same position to
the output or unchanged copied to another position in the output.
|
| FunctionAnnotation.NonForwardedFields |
The NonForwardedFields annotation declares ALL fields which not preserved on the same
position in a functions output.
|
| FunctionAnnotation.NonForwardedFieldsFirst |
The NonForwardedFieldsFirst annotation declares for a function ALL fields of its first input
which are not preserved on the same position in its output.
|
| FunctionAnnotation.NonForwardedFieldsSecond |
The NonForwardedFieldsSecond annotation declares for a function ALL fields of its second
input which are not preserved on the same position in its output.
|
| FunctionAnnotation.ReadFields |
The ReadFields annotation declares for a function all fields which it accesses and evaluates,
i.e., all fields that are used by the function to compute its result.
|
| FunctionAnnotation.ReadFieldsFirst |
The ReadFieldsFirst annotation declares for a function all fields of the first input which it
accesses and evaluates, i.e., all fields of the first input that are used by the function to
compute its result.
|
| FunctionAnnotation.ReadFieldsSecond |
The ReadFieldsSecond annotation declares for a function all fields of the second input which
it accesses and evaluates, i.e., all fields of the second input that are used by the function
to compute its result.
|