我想使用ml的最大整数和最小整数,但我不能,我从库中看到它的int类型选项,我该如何使用它?我在这里看到http://www.standardml.org/Basis/integer.html#SIG:INTEGER.minInt:VAL
我想用它来制作max和min函数,每个方法都取一个整数列表,我必须分别返回max和min。
我尝试了以下代码,但它们没有用:
- fun max x =
= foldr (fn (a, b) => if a > b then a else b) INTEGER.minInt x;
- fun max x =
= foldr (fn (a, b) => if a > b then a else b) minInt x;
- fun max x =
= foldr (fn (a, b) => if a > b then a else b) Int.minInt x;
有人知道如何使用它们吗?