# Overlap [String] ### 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 [STRING]`: a list of strings (left operand) - `B [STRING]`: a list of strings (right operand) ### Output - `INTERS [STRING]`: the intersection between `A` and `B` - `UNION [STRING]`: the union between `A` and `B` - `DIFF [STRING]`: the difference between `A` and `B` (`A` - `B`) Output scores can be [aggregated](docs://score_aggregation) and/or [normalised](docs://score_normalisation).