I have the following code:
def evAnd(v, *predicates):
satisfied=True
for f in predicates:
if not f(v):
satisfied=False
# log: f,v->False in a map and other side effects
else:
# log: f,v->True in a map and other side effects
return satisfied
def evOr(v, *predicates):
satisfied=False
for f in predicates:
if f(v):
satisfied=True
# log: f,v->True in a map and other side effects
else:
# log: f,v->False in a map and other side effects
return satisfied
What's the Pythonic way to unify the above in a single function? (as there is considerable side-effect code where the log messages are placed) Notice the presence of side effects and the need to evaluate the outcome for all predicates without the short-circuiting of any and all
solution based on accepted answer
So, here's what I did in the end based on the accepted answer:
def adorn(predicate):
def rv(v):
rvi = predicate(v)
if rvi:
print "%s is satisfied for value %d" % (predicate.__name__, v)
# any other side effects
else:
print "%s is not satisfied for value %d" % (predicate.__name__, v)
# any other side effects
return rvi
return rv
def my_all(n, predicates):
return reduce(operator.and_, map( lambda x : x(n), map(adorn, predicates)), True)
def my_any(n, predicates):
return reduce(operator.or_, map( lambda x : x(n) , map(adorn, predicates)), False)
It can be tested with:
def even(n):
return n%2==0
def odd(n):
return n%2!=0
print my_all(3, [even, odd])
print my_any(4, [even, odd])