You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jun 6, 2025. It is now read-only.
We want to compare sets (or keys of a map) with a collection in the predicate and return true/false based on the type of overlap.
Seen In/Has Intersection?
Data | Search | Result
-- | -- | --
X,Y,Z | X,Y | True
X,Y,Z | X,B | True
X,Y,Z | B,C | False
Seen Outside/Has Difference?
Data | Search | Result
-- | -- | --
X,Y,Z | X,Y | True
X,Y,Z | X,Y,Z | False
X,Y,Z | B,C | True
Always seen outside, Has No Intersection?
This is just the NOT of has intersection I think.