| 74 | explicit ShapeIndex(ShapeIndexView v); |
| 75 | |
| 76 | bool empty() const { return indices_.empty(); } |
| 77 | size_t size() const { return indices_.size(); } |
| 78 | void push_back(int64 value) { indices_.push_back(value); } |
| 79 | void pop_back() { indices_.pop_back(); } |
no outgoing calls