Logo

Programming-Idioms

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

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

sub compose {
   my ($f, $g) = @_;
   return sub {
      return $g->($f->(shift))
   }
}

sub double { return 2*shift }
sub triple { return 3*shift }
sub aFunc = compose(\&double, \&triple);
aFunc->(7);

To pass a function reference to a function, you need the \& operator. To call a function reference, you need to use ->.
(defn compose [f g]
   (comp g f))

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