Symmetric difference set operation #63
Labels
hacktoberfest
improvement
improves existing functionality
nice new thing ☺
adds new functionality
specification
involves the nyan language specification
Symmetric difference, disjunctive union, XOR - or whatever you call it - is a set operation where the resulting set is composed of elements which are present in either set, but not in both. The corresponding python operator is
^=
.This operation would lower the required patches for "replacement" changes such as the replacement of a move ability.
Without XOR (2 patches):
With XOR (1 patch):
The text was updated successfully, but these errors were encountered: