Skip to content

Instantly share code, notes, and snippets.

@ceoro9
Last active July 14, 2019 16:35
Show Gist options
  • Save ceoro9/6119f8312a987cdb29e4085c5fb1410d to your computer and use it in GitHub Desktop.
Save ceoro9/6119f8312a987cdb29e4085c5fb1410d to your computer and use it in GitHub Desktop.
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