FixedArray::end() Returns an iterator to the end of the fixed array.
| 259 | // |
| 260 | // Returns an iterator to the end of the fixed array. |
| 261 | iterator end() { return data() + size(); } |
| 262 | |
| 263 | // Overload of FixedArray::end() to return a const iterator to the end of the |
| 264 | // fixed array. |
no test coverage detected