| 371 | typedef T value_type; |
| 372 | |
| 373 | array_wrapper_n(const T * const a, size_t n) : _array(a), _n(n) { } |
| 374 | inline const_iterator begin() const { return _array; } |
| 375 | inline const_iterator end() const { return _array + _n; } |
| 376 |
nothing calls this directly
no outgoing calls
no test coverage detected