Navigation :
isSubsetOf
isSubsetOf, function
def const dash pure isSubsetOf(setA: long, setB: long): boolean
Returns true if setA is a subset of setB.
setA: candidate subset.
setB: candidate superset.
Examples
ABC = union(flag(1), union(flag(2), flag(3)))
BC = union(flag(2), flag(3))
show table "Subset" with
isSubsetOf(BC, ABC) as "Result"
This produces the following table:
See also