61 StringBuilder Result =
new StringBuilder();
64 foreach (
IElement Item
in Vector.VectorElements)
71 else if (!(Delimiter is
null))
72 Result.Append(Delimiter);
80 #region IIterativeEvalaution
Class managing a script expression.
Concat(v[,Delimiter]) iterative evaluator
Concatenates the elements of a vector, optionally delimiting the elements with a Delimiter.
Concat(ScriptNode Vector, int Start, int Length, Expression Expression)
Concatenates the elements of a vector, optionally delimiting the elements with a Delimiter.
IIterativeEvaluator CreateEvaluator()
Creates an iterative evaluator for the node.
bool CanEvaluateIteratively
If the node can be evaluated iteratively.
override string FunctionName
Name of the function
override string[] DefaultArgumentNames
Default Argument names
Concat(ScriptNode Vector, ScriptNode Delimiter, int Start, int Length, Expression Expression)
Concatenates the elements of a vector, optionally delimiting the elements with a Delimiter.
override IElement Evaluate(IElement[] Arguments, Variables Variables)
Evaluates the function.
Represents a constant element value.
Base class for multivariate funcions.
ScriptNode[] Arguments
Function arguments.
Base class for all nodes in a parsed script tree.
override string ToString()
Expression Expression
Expression of which the node is a part.
int Start
Start position in script expression.
Basic interface for all types of elements.
object AssociatedObjectValue
Associated object value.
Basic interface for vectors.
A function that can be iteratively evaluated, meaning it can be iteratively computed one element at a...
An interative evaluator of a function supporting the IIterativeEvaluation interface.
ArgumentType
Type of parameter used in a function definition or a lambda definition.