interface SetDifference {
    $setDifference: [ArrayExpression<any>, ArrayExpression<any>];
}

Properties

Properties

$setDifference: [ArrayExpression<any>, ArrayExpression<any>]

Takes two sets and returns an array containing the elements that only exist in the first set; i.e. performs a relative complement of the second set relative to the first.