[This is preliminary documentation and is subject to change.]

Finds the absolute value of a number.

Namespace:  BigNum
Assembly:  BigNum (in BigNum)
Version: 1.0.0.0

Syntax

C#
public static BigInt Abs(
	BigInt num
)
Visual Basic (Declaration)
Public Shared Function Abs ( _
	num As BigInt _
) As BigInt
Visual C++
public:
static BigInt^ Abs(
	BigInt^ num
)

Parameters

num
Type: BigNum..::.BigInt
The number to calculate the absolute value of.

Return Value

The absolute value of the number.

See Also