Interface IGenericExpressionVisitor<T>
Standardize expression visitors which "return something".
Inherited Members
Namespace: Mangrove.MetricSetSyntaxTree
Assembly: MetricSetSyntaxTree.dll
Syntax
public interface IGenericExpressionVisitor<T> : IExpressionVisitor, IGenericVisitor<T>
Type Parameters
Name | Description |
---|---|
T | Type of the thing which is returned. |
Remarks
This is useful for instances when all you care about is the result of applying the visitor, e.g. when applying a "to string" visitor to a sequence of expressions.