MinL 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 smaller of two specified numbers.

function MinL (a : BigInt, b : BigInt) : BigInt

Input

a : BigInt

The first number to be compared.

b : BigInt

The second number to be compared.

Output : BigInt

The smaller of a and b.

Example

let min = MinL(314L, 271L);  // 271L

See Also