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
Show file Open project: aarondandy/vertesaur

Protected Methods

Method Description
ReducibleUnaryExpressionBase ( Expression unaryParameter, IExpressionGenerator reductionExpressionGenerator = null ) : System

Creates a new reducible expression with the given single parameter.

Private Methods

Method Description
CodeContractInvariant ( ) : void

Method Details

ReducibleUnaryExpressionBase() protected method

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.
return System