C# Class Vertesaur.Generation.Expressions.ReducibleUnaryExpressionBase

An expression that can be reduced to a compilable expression and which also takes a single expression as input.
Inheritance: ReducibleExpressionBase
Afficher le fichier Open project: aarondandy/vertesaur

Méthodes protégées

Méthode Description
ReducibleUnaryExpressionBase ( Expression unaryParameter, IExpressionGenerator reductionExpressionGenerator = null ) : System

Creates a new reducible expression with the given single parameter.

Private Methods

Méthode Description
CodeContractInvariant ( ) : void

Method Details

ReducibleUnaryExpressionBase() protected méthode

Creates a new reducible expression with the given single parameter.
protected ReducibleUnaryExpressionBase ( Expression unaryParameter, IExpressionGenerator reductionExpressionGenerator = null ) : System
unaryParameter System.Linq.Expressions.Expression The single input parameter for the expression.
reductionExpressionGenerator IExpressionGenerator The optional expression generator used for reduction.
Résultat System