MaxL 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 larger of two specified numbers.

function MaxL (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 larger of a and b.

Example

let max = MaxL(314L, 271L);  // 314L

See Also