Logo

Programming-Idioms

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

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

Imports System
Function compose(f As Func(Of A, B), g As Func(Of B, C)) As Func(Of A, C)
    Return Function(a) g(f(a))
End Function
(defn compose [f g]
   (comp g f))

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