bool disjoint(const triplex<T>& a, const triplex<T>& b); bool proper_subset(const triplex<T>& a, const triplex<T>& b); bool subset(const triplex<T>& a, const triplex<T>& b); bool proper_superset(const triplex<T>& a, const triplex<T>& b); bool superset(const triplex<T>& a, const triplex<T>& b); bool overlap(const triplex<T>& a, const triplex<T>& b);
Determines whether the two given triplexes are disjoint to each other, that is whether they do not have any
common set.
Determines whether is a proper subset of
, that is
.
Determines whether is a subset of
, that is
.
Determines whether is a proper superset of
, that is
.
Determines whether is a superset of
, that is
.
Determines whether the ranges of and
overlap to any degree.