| 259 | } |
| 260 | |
| 261 | size_t Array::Key::doGetHash() const |
| 262 | { |
| 263 | if (m_wrapper) |
| 264 | { |
| 265 | return 0; // all wrappers are equal wrt. the cache |
| 266 | } |
| 267 | else |
| 268 | { |
| 269 | using util::ComputeHash; |
| 270 | return ComputeHash(m_length, m_dtype); |
| 271 | } |
| 272 | } |
| 273 | |
| 274 | bool Array::Key::doIsCompatible(const IKey &that_) const |
| 275 | { |
nothing calls this directly
no test coverage detected