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.
我目前正在学习 Haskell,并且遇到了一种叫做柯里化和柯里化值的东西。
我还发现 (+) 是 + 的咖喱版本
+ :: (Integer, Integer) -> Integer (+) :: Integer -> Integer -> Integer
据我所知,非咖喱版你必须同时输入 2 个数字,而我完全迷失了咖喱版。
任何解释和例子都会非常感谢!