| 141 | } |
| 142 | |
| 143 | bool DataTypeMap::equals(const IDataType & rhs) const |
| 144 | { |
| 145 | if (typeid(rhs) != typeid(*this)) |
| 146 | return false; |
| 147 | |
| 148 | const DataTypeMap & rhs_map = static_cast<const DataTypeMap &>(rhs); |
| 149 | return nested->equals(*rhs_map.nested); |
| 150 | } |
| 151 | |
| 152 | bool DataTypeMap::isValidKeyType(DataTypePtr key_type) |
| 153 | { |
no outgoing calls