diff options
author | Jesusaves <cpntb1@ymail.com> | 2020-12-09 13:32:01 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2020-12-09 13:32:01 -0300 |
commit | 63afe4145f410a844c647d4e3f1059f568175c1e (patch) | |
tree | 15da6a890c78d73370f44f9fd5d59badfbbe60e4 /game/python-extra/utils/bools.py | |
download | client-init.tar.gz client-init.tar.bz2 client-init.tar.xz client-init.zip |
Initial commit, forked from Spheresinit
Diffstat (limited to 'game/python-extra/utils/bools.py')
-rw-r--r-- | game/python-extra/utils/bools.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/game/python-extra/utils/bools.py b/game/python-extra/utils/bools.py new file mode 100644 index 0000000..f2bcab5 --- /dev/null +++ b/game/python-extra/utils/bools.py @@ -0,0 +1,7 @@ +try: + reduce +except NameError: + from functools import reduce + +def xor(*things): + return reduce(lambda x, y: bool(x) ^ bool(y), things) |