C# Class Vertesaur.Generation.Expressions.SinhExpression

A hyperbolic sine expression.
Inheritance: ReducibleUnaryExpressionBase
Show file Open project: aarondandy/vertesaur

Public Methods

Method Description
Reduce ( ) : Expression
SinhExpression ( Expression input, IExpressionGenerator generator = null ) : System

Creates a new hyperbolic sine expression.

Private Methods

Method Description
SinhExpression ( ) : System

Method Details

Reduce() public method

public Reduce ( ) : Expression
return System.Linq.Expressions.Expression

SinhExpression() public method

Creates a new hyperbolic sine expression.
public SinhExpression ( Expression input, IExpressionGenerator generator = null ) : System
input System.Linq.Expressions.Expression The expression to calculate the hyperbolic sine of.
generator IExpressionGenerator The optional expression generator used during reduction.
return System