| 164 | } |
| 165 | |
| 166 | bool DataTypeMap::equals(const IDataType & rhs) const |
| 167 | { |
| 168 | if (typeid(rhs) != typeid(*this)) |
| 169 | return false; |
| 170 | |
| 171 | const DataTypeMap & rhs_map = static_cast<const DataTypeMap &>(rhs); |
| 172 | return nested->equals(*rhs_map.nested); |
| 173 | } |
| 174 | |
| 175 | bool DataTypeMap::isComparable() const |
| 176 | { |
no outgoing calls