Files
30-seconds-of-code/snippets/compose_right.md
Angelos Chalaris 37f433feb7 Add compose right
2020-01-02 15:51:26 +02:00

551 B

title, tags
title tags
compose_right function,intermediate

Performs left-to-right function composition.

Use reduce() to perform left-to-right function composition. The first (leftmost) function can accept one or more arguments; the remaining functions must be unary.

from functools import reduce

def compose_right(*fns):
  return reduce(lambda f, g: lambda *args: g(f(*args)), fns)
add = lambda x, y: x + y
square = lambda x: x * x
add_and_square = compose_right(add,square)

add_and_square(1, 2) # 9