Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
声明跟随功能 -
fun act(f,x) = f(x);
制作签名 -
val act = fn : ('a -> 'b) * 'a -> 'b
是什么('a -> 'b) * 'a -> 'b意思?
('a -> 'b) * 'a -> 'b
这意味着这act是一个需要一对(2元组)的函数
act
('a -> 'b) * 'a
其中第一个元素是 from 'ato的函数'b,第二个是类型的东西'a。 它返回一个类型的东西'b。
'a
'b