Content deleted Content added
citation needed; move Python example to examples |
Artoria2e5 (talk | contribs) |
||
Line 59:
= \x -> \y -> (f . (g x)) y
= \x -> f . (g x)
(* Here the infix compose operator "." is used as a curried function. *)
= \x -> ((.) f) (g x)
= \x -> (((.) f) . g) x
|