Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
IExtensionFunction.cs
3
5{
9 public interface IExtensionFunction : IProcessingSupport<string>
10 {
14 int MinArguments { get; }
15
19 int MaxArguments { get; }
20
29 ScriptNode CreateFunction(ScriptNode[] Arguments, int Start, int Length, Expression Expression);
30 }
31}
Class managing a script expression.
Definition: Expression.cs:39
Base class for all nodes in a parsed script tree.
Definition: ScriptNode.cs:69
Interface for detecting interfaces supporting objects with predefined features.
ScriptNode CreateFunction(ScriptNode[] Arguments, int Start, int Length, Expression Expression)
Creates a function node.