! * \brief Get the type key of the ObjectRef * \return The type key of the ObjectRef */
| 871 | * \return The type key of the ObjectRef |
| 872 | */ |
| 873 | std::string GetTypeKey() const { |
| 874 | return data_ != nullptr ? data_->GetTypeKey() : StaticTypeKey::kTVMFFINone; |
| 875 | } |
| 876 | |
| 877 | /*! \brief type indicate the container type. */ |
| 878 | using ContainerType = Object; |
nothing calls this directly
no test coverage detected