Click or drag to resize

FunctionPower Method

Creates a function that will raise the given numeric expression to an expression that determines the exponent

Namespace:  Couchbase.Lite.Query
Assembly:  Couchbase.Lite (in Couchbase.Lite.dll) Version: 2.0.0-b0295
Syntax
C#
public static IFunction Power(
	Object b,
	Object exponent
)

Parameters

b
Type: SystemObject
A numeric literal or expression that provides the base
exponent
Type: SystemObject
A numeric literal or expression that provides the exponent

Return Value

Type: IFunction
A function that will raise the base to the given exponent
See Also