Logo

Programming-Idioms

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

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

func compose(f func(A) B, g func(B) C) func(A) C {
	return func(x A) C {
		return g(f(x))
	}
}

Functions are first-class citizens in Go. They are passed as arguments and as return values.
(defn compose [f g]
   (comp g f))

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