Interface IGenericVisitor<T>
Wrapper interface for visitors which "return something". This is useful for standardizing the name of the "return property".
Namespace: Mangrove.MetricSetSyntaxTree
Assembly: MetricSetSyntaxTree.dll
Syntax
public interface IGenericVisitor<T>
Type Parameters
Name | Description |
---|---|
T | Type of the "thing to return". |
Properties
View SourceResult
Method which returns the "result" of applying this expression visitor.
Declaration
T Result { get; }
Property Value
Type | Description |
---|---|
T |
Methods
View SourceReset()
Method which resets this expression visitor, so it may be applied again.
Declaration
void Reset()