Returns a pointer to the first element in the array.
| 72 | |
| 73 | // Returns a pointer to the first element in the array. |
| 74 | Element_type *begin() { return &m_array[0]; } |
| 75 | |
| 76 | // Returns a pointer to the past-the-end element in the array. |
| 77 | Element_type *end() { return &m_array[size()]; } |
no outgoing calls
no test coverage detected