C# 클래스 Vertesaur.Generation.Expressions.SquareRootExpression

An expression representing the square-root of another expression. SquareRootExpression(expression) = (expression)^(1/2).
상속: ReducibleUnaryExpressionBase
파일 보기 프로젝트 열기: aarondandy/vertesaur

공개 메소드들

메소드 설명
Reduce ( ) : Expression
SquareRootExpression ( Expression unaryParameter, IExpressionGenerator reductionExpressionGenerator = null ) : System

Creates a new square root expression.

비공개 메소드들

메소드 설명
SquareRootExpression ( ) : System

메소드 상세

Reduce() 공개 메소드

public Reduce ( ) : Expression
리턴 System.Linq.Expressions.Expression

SquareRootExpression() 공개 메소드

Creates a new square root expression.
public SquareRootExpression ( Expression unaryParameter, IExpressionGenerator reductionExpressionGenerator = null ) : System
unaryParameter System.Linq.Expressions.Expression The expression to find the square root of.
reductionExpressionGenerator IExpressionGenerator The optional expression generator used for reduction.
리턴 System