| 485 | return *std::get_if<FuncType>(&Type); |
| 486 | } |
| 487 | void setFuncType(FuncType &&FT) noexcept { |
| 488 | Type.emplace<FuncType>(std::move(FT)); |
| 489 | } |
| 490 | |
| 491 | const ComponentType &getComponentType() const noexcept { |
| 492 | return *std::get_if<ComponentType>(&Type); |
no outgoing calls