operator ^ method

Uint8List operator ^(
  1. Uint8List other
)

Merges this instance with other using the XOR logical operator.

Implementation

Uint8List operator ^(Uint8List other) => merge(other, (a, b, i) => a ^ b);