Skip to content

xor

XOR(Exclusive OR) the passed array and return a new array.

Usage

ts
import { xor } from 'rattail'

xor([1, 2, 2], [1, 3])
// return [2, 3]
xor([1, 2], [1, 2], [3])
// return [3]

Arguments

ArgTypeDefaults
...valuesArray<Array>

Return

Type
Array