Check if this Locator is removed. */
| 594 | bool IsMissing() const noexcept { return cluster == nullptr && index == 0; } |
| 595 | /** Check if this Locator is removed. */ |
| 596 | bool IsRemoved() const noexcept { return cluster == nullptr && index == DepGraphIndex(-1); } |
| 597 | /** Check if this Locator is present (in some Cluster). */ |
| 598 | bool IsPresent() const noexcept { return cluster != nullptr; } |
| 599 | }; |
no outgoing calls
no test coverage detected