push_front is O(n), but shapes don't usually have a ton of dimensions.
| 80 | |
| 81 | // push_front is O(n), but shapes don't usually have a ton of dimensions. |
| 82 | void push_front(int64 value) { indices_.insert(indices_.begin(), value); } |
| 83 | |
| 84 | using container_type = absl::InlinedVector<int64, 2>; |
| 85 |
no test coverage detected