Class Array
- Namespace
- Albatross.Expression.Prefix
- Assembly
- Albatross.Expression.dll
Prefix operation that create an object array
Operand Count: 0 to infinite
Operand Type: Any
Output Type: List<T> where T is Object
Usage: @(1, 2, 3, 4, 5)
public class Array : PrefixExpression, IPrefixExpression, IExpression, IToken
- Inheritance
-
Array
- Implements
- Inherited Members
- Extension Methods
Constructors
Array()
public Array()
Methods
Run(List<object>)
Executes the prefix function with the evaluated operand values. Derived classes should override this method to implement specific function logic.
protected override object Run(List<object> operands)
Parameters
Returns
- object
The result of the function.