Enum VectorOperationKind
Types of vector operations (e.g., Max(1, 2, 3)
) supported.
Namespace: Mangrove.MetricSetSyntaxTree.ExpressionNodes
Assembly: MetricSetSyntaxTree.dll
Syntax
public enum VectorOperationKind
Remarks
Vector operations should be no-ops on only one argument. That is,
vect(expr)
should be semantically identical to expr
.
Fields
Name | Description |
---|---|
Max | Arithmetic maximum of a list of expressions. |
Min | Arithmetic minimum of a list of expressions. |
None |