| 47 | bool Shape::operator!=(const Shape& rhs) const { return !(*this == rhs); } |
| 48 | |
| 49 | int64_t Shape::elem_cnt() const { return shape_->elem_cnt(); } |
| 50 | |
| 51 | int64_t Shape::At(int64_t index) const { return shape_->At(index); } |
| 52 |
no outgoing calls
no test coverage detected