MinI 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 MinI (a : Int, b : Int) : Int

Input

a : Int

The first number to be compared.

b : Int

The second number to be compared.

Output : Int

The smaller of a and b.

Example

let min = MinI(314, 271);  // 271

See Also