mux-elixir
mux-elixir copied to clipboard
Replace deprecated xor operator
The xor operator (^^^/2) has been deprecated in favor of Bitwise.bxor/2 as of Elixir v1.12. Compiling the library currently emits the following warning:
^^^ is deprecated. It is typically used as xor but it has the wrong precedence, use Bitwise.bxor/2 instead