FixedArray::data() Returns a const T* pointer to elements of the `FixedArray`. This pointer can be used to access (but not modify) the contained elements.
| 200 | // Returns a const T* pointer to elements of the `FixedArray`. This pointer |
| 201 | // can be used to access (but not modify) the contained elements. |
| 202 | const_pointer data() const { return AsValueType(storage_.begin()); } |
| 203 | |
| 204 | // Overload of FixedArray::data() to return a T* pointer to elements of the |
| 205 | // fixed array. This pointer can be used to access and modify the contained |
no test coverage detected