Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

compose functions python

def compose(*functions):
    return functools.reduce(lambda f, g: lambda x: f(g(x)), functions, lambda x: x)
Source by mathieularose.com #
 
PREVIOUS NEXT
Tagged: #compose #functions #python
ADD COMMENT
Topic
Name
6+5 =