Created
March 10, 2009 20:47
-
-
Save anfedorov/77124 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 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