Skip to content

tm_setintersection Function

The tm_setintersection function takes multiple sets and produces a single set containing only the elements that all of the given sets have in common. In other words, it computes the intersection of the sets.

hcl
tm_setintersection(sets...)

Examples

sh
tm_setintersection(["a", "b"], ["b", "c"], ["b", "d"])
[
  "b",
]

The given arguments are converted to sets, so the result is also a set and the ordering of the given elements is not preserved.

  • tm_contains tests whether a given list or set contains a given element value.
  • tm_setproduct computes the Cartesian product of multiple sets.
  • tm_setsubtract computes the relative complement of two sets
  • tm_setunion computes the union of multiple sets.