Return true if sets A and B have no elements in common.
Declared in <llvm/CodeGen/RDFRegisters.h>
template<typename T>
bool
disjoint(
std::set<T> const& A,
std::set<T> const& B);
True when the intersection of A and B is empty.
| Name | Description |
|---|---|
| A | First ordered set. |
| B | Second ordered set. |