|
|
The term 'currying' means both of these things:
- Converting an uncurried function to a 'curriable' one
- Partially applying a 'curriable' function
2009/1/13 Peter Verswyvelen <bugfact@xxxxxxxxx>:
> On page 102: "partial function application is named currying"
>
>
>
> I thought "currying" or "to curry" means converting
>
>
>
> f :: (a,b) ->c
>
>
>
> into
>
>
>
> g :: a -> b -> c
>
>
>
> by applying "curry" (mmm, are Asian people good at Haskell? :-)
>
>
> g = curry f
>
>
>
>
>
>
>
>
> _______________________________________________
> Haskell-Cafe mailing list
> Haskell-Cafe@xxxxxxxxxxx
> http://www.haskell.org/mailman/listinfo/haskell-cafe
>
>
_______________________________________________
Haskell-Cafe mailing list
Haskell-Cafe@xxxxxxxxxxx
http://www.haskell.org/mailman/listinfo/haskell-cafe
|
|