summaryrefslogtreecommitdiff
path: root/game/python-extra/utils/bools.py
blob: f2bcab5e1de071410370190b55b222e4cc48720c (plain) (blame)
1
2
3
4
5
6
7
try:
    reduce
except NameError:
    from functools import reduce

def xor(*things):
    return reduce(lambda x, y: bool(x) ^ bool(y), things)