\brief Output an exact type
| 295 | |
| 296 | /// \brief Output an exact type |
| 297 | OutputType(std::shared_ptr<DataType> type) // NOLINT implicit construction |
| 298 | : kind_(FIXED), type_(std::move(type)) {} |
| 299 | |
| 300 | /// \brief Output a computed type depending on actual input types |
| 301 | template <typename Fn> |
no outgoing calls
no test coverage detected