Skip to content

Instantly share code, notes, and snippets.

@nojhan
Created March 10, 2020 15:20
Show Gist options
  • Save nojhan/a5cb7e26174e8013682d52a895e44854 to your computer and use it in GitHub Desktop.
Save nojhan/a5cb7e26174e8013682d52a895e44854 to your computer and use it in GitHub Desktop.
Wrapping call as the basis for function composition
def make(func, **kwargs):
def f(arg):
return func(arg,**kwargs)
return f
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment