AbsL function

Warning

This documentation refers to the Classic QDK, which has been replaced by the Modern QDK.

Please see https://aka.ms/qdk.api for the API documentation for the Modern QDK.

Namespace: Microsoft.Quantum.Math

Package: Microsoft.Quantum.QSharp.Foundation

Returns the absolute value of an integer.

function AbsL (a : BigInt) : BigInt

Input

a : BigInt

The number whose absolute value is to be returned.

Output : BigInt

The absolute value of a.

Example

Message($"{AbsL(314L)}");   // 314L
Message($"{AbsL(-271L)}");  // 271L

See Also