Skip to content

Instantly share code, notes, and snippets.

@AD0791
Created October 12, 2021 18:49
Show Gist options
  • Save AD0791/fe2884efd5b866936c23b6106b554fd9 to your computer and use it in GitHub Desktop.
Save AD0791/fe2884efd5b866936c23b6106b554fd9 to your computer and use it in GitHub Desktop.
function composition
import functools
def compose(*functions):
return functools.reduce(lambda f, g: lambda x: f(g(x)), functions)
# dec double inc are given function
>>> inc_double_and_dec = compose(dec, double, inc)
>>> inc_double_and_dec(10)
>>> 21
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment