Logo

Programming-Idioms

This language bar is your friend. Select your favorite languages!
  • Haskell

Idiom #35 First-class function : compose

Implement a function compose (A -> C) with parameters f (A -> B) and g (B -> C), which returns the composition function g ∘ f

compose :: (A -> B) -> (B -> C) -> A -> C
compose = flip (.)

Function composition is performed by the function ".". The parenthesis in the implementation are because the function is an operator and is usually infix.

The function flip swaps the order of the arguments to the function it is applied to, since the compose function has type signature (B -> C) -> (A -> B) -> A -> C.

The type signature (the first line) is optional and could be omitted.
compose :: (A -> B) -> (B -> C) -> A -> C
compose f g x = g (f x)

The type signature (the first line) is optional and could be omitted.
(defn compose [f g]
   (comp g f))

New implementation...
< >
programming-idioms.org