nt/nib/std/trivial.nix

14 lines
126 B
Nix
Raw Normal View History

2025-12-18 11:54:08 +10:00
{...}: {
id = x: x;
min = x: y:
if x < y
then x
else y;
max = x: y:
if x > y
then x
else y;
}