# Overlap ### Description Computes set operations (intersection, union, difference) between inputs `A` and `B`. By default, no duplicate elimination is performed. Use `Score aggregation` parameter to change that. ### Input - `A [OBJ]`: a list of objects (left operand) - `B [OBJ]`: a list of objects (right operand) ### Output - `INTERS [OBJ]`: the intersection between `A` and `B` - `UNION [OBJ]`: the union between `A` and `B` - `DIFF [OBJ]`: the difference between `A` and `B` (`A` - `B`) Output scores can be [aggregated](docs://score_aggregation) and/or [normalised](docs://score_normalisation).