INTERSECTION

Description

The INTERSECTION function returns the elements contained in both sets

Example

p is Person
INTERSECTION(p.countries_lived_in, p.nationalities)

This would return countries the person has both lived in and has a passport of. So fa person that lived in Germany, Switzerland and Italy, but is only of German nationality, this would return Germany.

Last updated