Returns the number of elements of type ElemT that constitute this allocation.
| 136 | // Returns the number of elements of type ElemT that constitute this |
| 137 | // allocation. |
| 138 | uint64 ElementCount() const { return size() / sizeof(ElemT); } |
| 139 | |
| 140 | // Returns whether this is a single-element allocation. |
| 141 | bool IsScalar() const { return ElementCount() == 1; } |