| Interface | Description |
|---|---|
| ValueExpression |
Interface for all ValueExpression implementations.
|
| Class | Description |
|---|---|
| BinaryValueExpression |
Base class for
ValueExpressions with two operands. |
| Bytes |
A
ValueExpression that splits the results of evaluating its operand
into individual bytes. |
| Cat |
A
BinaryValueExpression that concatenates values at the byte-level. |
| Const |
A
ValueExpression representing a constant value. |
| ConstantFactory | |
| Elvis |
A
ValueExpression that implements the Elvis operator: |
| Expand |
A
ValueExpression that expands a result by copying and concatenating
it a specified amount of times. |
| Fold |
Base class for
ValueExpression implementations of the Fold
operation. |
| FoldCat |
A
ValueExpression that represents an optimized version of a
FoldLeft operation with a Cat ValueExpression as reducer. |
| FoldLeft |
A
ValueExpression implementation of the FoldLeft operation. |
| FoldRight |
A
ValueExpression implementation of the FoldRight operation. |
| Reverse |
A
ValueExpression that reverses the results of its operand. |
| UnaryValueExpression |
Base class for
ValueExpressions with one operand. |
| Value |
Copyright © 2017. All rights reserved.