FixedArray::back() Returns a reference to the last element of the fixed array.
| 236 | // |
| 237 | // Returns a reference to the last element of the fixed array. |
| 238 | reference back() { return *(end() - 1); } |
| 239 | |
| 240 | // Overload of FixedArray::back() to return a reference to the last element |
| 241 | // of a fixed array of const values. |
no outgoing calls