Table of Contents

Constructor Power

Namespace
YndigoBlue.Velocity.Functions
Assembly
YndigoBlue.Velocity.dll

Power(Column, double)

Initializes a new instance of POWER with a column base and literal exponent.

public Power(Column baseColumn, double exponent)

Parameters

baseColumn Column

The column containing the base value.

exponent double

The exponent to raise the base to.

Power(Column, Column)

Initializes a new instance of POWER with column-based base and exponent.

public Power(Column baseColumn, Column exponentColumn)

Parameters

baseColumn Column

The column containing the base value.

exponentColumn Column

The column containing the exponent value.

Power(Column, Expression)

Initializes a new instance of POWER with a column base and expression exponent.

public Power(Column baseColumn, Expression exponentExpression)

Parameters

baseColumn Column

The column containing the base value.

exponentExpression Expression

The expression containing the exponent value.

Power(double, double)

Initializes a new instance of POWER with literal base and exponent values.

public Power(double baseValue, double exponent)

Parameters

baseValue double

The base value.

exponent double

The exponent to raise the base to.

Power(Expression, Expression)

Initializes a new instance of POWER with expression-based base and exponent.

public Power(Expression baseExpression, Expression exponentExpression)

Parameters

baseExpression Expression

The expression containing the base value.

exponentExpression Expression

The expression containing the exponent value.