| 917 | } |
| 918 | |
| 919 | size_t DataType::Hash() const { |
| 920 | static constexpr size_t kHashSeed = 0; |
| 921 | size_t result = kHashSeed; |
| 922 | internal::hash_combine(result, this->fingerprint()); |
| 923 | return result; |
| 924 | } |
| 925 | |
| 926 | std::ostream& operator<<(std::ostream& os, const DataType& type) { |
| 927 | os << type.ToString(); |
no test coverage detected