Last active
July 14, 2019 16:35
-
-
Save ceoro9/6119f8312a987cdb29e4085c5fb1410d to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def map_many(iterable, *funcs): | |
if funcs: | |
return many_map(map(funcs[0], iterable), funcs[1:]) | |
return iterable |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment