import { fn } from "https://deno.land/x/ddc_vim@v4.0.2/deps.ts";
const { xor } = fn;
Bitwise XOR on the two arguments. The arguments are converted
to a number. A List, Dict or Float argument causes an error.
Also see and()
and or()
.
Example:
:let bits = xor(bits, 0x80)
Can also be used as a method
:
:let bits = bits->xor(0x80)