Table of Contents

min

num min(num a, num b)

num - any numeric type (int or fixed)

Description

Returns the lesser of two numbers.

Examples

min(3, 5) -> 3
min(5, 3) -> 3
min(8.0, 7.5) -> 7.5