AbsI 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 AbsI (a : Int) : Int

Input

a : Int

The number whose absolute value is to be returned.

Output : Int

The absolute value of a.

Example

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

See Also