|
|
|
|
|
by tel
4376 days ago
|
|
Also to explain that strange "adjunction" comment, currying results from the notion that the things of type (a, b) -> c
are exactly equivalent to the things of type a -> (b -> c)
An adjunction (F, G) occurs when the things of type (F a -> c) are equivalent to things of type (a -> G c), so if we pick F x = (x, b) and G x = (b -> x) then we see that currying is an adjunction between (,b) and (b ->). |
|