summaryrefslogtreecommitdiffhomepage
path: root/tests/custom/03_stdlib/46_min
blob: c07fbff6d95365c1555d695c9e4f9b34991fbc14 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
The `min()` function returns the minimum of all given arguments.

If multiple equivalent minimum values are given (e.g. `null` and `false`
both are treated as `0` when comparing numerically), the first minimal
value is returned.

Returns the minimum value among all given arguments or `null` if no
arguments were passed.

-- Testcase --
{%
	printf("%.J\n", [
		min(),
		min(5, 1, 3, -10),
		min("foo", "bar", "xxx", "abc"),
		min(false, null, 0, NaN)
	]);
%}
-- End --

-- Expect stdout --
[
	null,
	-10,
	"abc",
	false
]
-- End --