Skip to content

Instantly share code, notes, and snippets.

@ajm188
Created November 3, 2016 21:30
Show Gist options
  • Save ajm188/a86dc29946488442aec8da4d0a911f3a to your computer and use it in GitHub Desktop.
Save ajm188/a86dc29946488442aec8da4d0a911f3a to your computer and use it in GitHub Desktop.
def compose(*functions):
assert functions
def f(*args, **kwargs):
return reduce(functions[1:], __call__, functions[0](*args, **kwargs))
return f
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment