| 309 | const_reverse_iterator rend() const { return const_reverse_iterator(item_ptr(-1)); } |
| 310 | |
| 311 | size_t capacity() const { |
| 312 | if (is_direct()) { |
| 313 | return N; |
| 314 | } else { |
| 315 | return _union.capacity; |
| 316 | } |
| 317 | } |
| 318 | |
| 319 | T& operator[](size_type pos) { |
| 320 | return *item_ptr(pos); |
no outgoing calls
no test coverage detected