Interface IBuilder<T>
A builder for parsing expressions.
Namespace: SpiceSharpBehavioral.Builders
Assembly: SpiceSharpBehavioral.dll
Syntax
public interface IBuilder<T>
Type Parameters
| Name | Description |
|---|---|
| T | The value type. |
Methods
Build(Node)
Builds the specified value from the specified expression node.
Declaration
T Build(Node expression)
Parameters
| Type | Name | Description |
|---|---|---|
| Node | expression | The expression node. |
Returns
| Type | Description |
|---|---|
| T | The value. |