| 267 | bool operator!=(const TypeHolder& other) const { return !(*this == other); } |
| 268 | |
| 269 | std::string ToString(bool show_metadata = false) const { |
| 270 | return this->type ? this->type->ToString(show_metadata) : "<NULLPTR>"; |
| 271 | } |
| 272 | |
| 273 | static std::string ToString(const std::vector<TypeHolder>&, bool show_metadata = false); |
| 274 |