Skip to content

Instantly share code, notes, and snippets.

@anfedorov
Created March 10, 2009 20:47
Show Gist options
  • Save anfedorov/77124 to your computer and use it in GitHub Desktop.
Save anfedorov/77124 to your computer and use it in GitHub Desktop.
def autoDeepMap(f):
"Decorates a function of one argument to automatically deep-map over multiple or iterable arguments"
def mapped(*args):
if len(args) != 1:
return [mapped(x) for x in args]
elif getattr(args[0], '__iter__', False):
return [mapped(x) for x in args[0]]
else:
return f(args[0])
return mapped
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment