| 516 | return std::holds_alternative<FuncType>(Type); |
| 517 | } |
| 518 | bool isComponentType() const noexcept { |
| 519 | return std::holds_alternative<ComponentType>(Type); |
| 520 | } |
| 521 | bool isInstanceType() const noexcept { |
| 522 | return std::holds_alternative<InstanceType>(Type); |
| 523 | } |