FixedArray::front() Returns a reference to the first element of the fixed array.
| 227 | // |
| 228 | // Returns a reference to the first element of the fixed array. |
| 229 | reference front() { return *begin(); } |
| 230 | |
| 231 | // Overload of FixedArray::front() to return a reference to the first element |
| 232 | // of a fixed array of const values. |
no outgoing calls