| 138 | int64 size() const { return indices_.size(); } |
| 139 | bool empty() const { return indices_.empty(); } |
| 140 | int64 front() const { |
| 141 | CHECK(!empty()); |
| 142 | return indices_.front(); |
| 143 | } |
| 144 | int64 back() const { |
| 145 | CHECK(!empty()); |
| 146 | return indices_.back(); |
no outgoing calls