Skip to content

Instantly share code, notes, and snippets.

@kzinmr
Created November 28, 2018 05:33
Show Gist options
  • Save kzinmr/49ac657687e25d0a1c6504afddf754d3 to your computer and use it in GitHub Desktop.
Save kzinmr/49ac657687e25d0a1c6504afddf754d3 to your computer and use it in GitHub Desktop.
from functools import reduce
def compose(*functions):
return reduce(lambda f, g: lambda x: f(g(x)), functions, lambda x: x)
@kzinmr
Copy link
Author

kzinmr commented Nov 28, 2018

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment