| 519 | return std::holds_alternative<ComponentType>(Type); |
| 520 | } |
| 521 | bool isInstanceType() const noexcept { |
| 522 | return std::holds_alternative<InstanceType>(Type); |
| 523 | } |
| 524 | bool isResourceType() const noexcept { |
| 525 | return std::holds_alternative<ResourceType>(Type); |
| 526 | } |
no outgoing calls
no test coverage detected