FixedArray::begin() Returns an iterator to the beginning of the fixed array.
| 245 | // |
| 246 | // Returns an iterator to the beginning of the fixed array. |
| 247 | iterator begin() { return data(); } |
| 248 | |
| 249 | // Overload of FixedArray::begin() to return a const iterator to the |
| 250 | // beginning of the fixed array. |
no test coverage detected