| 258 | const_iterator end() const { return const_iterator(item_ptr(size())); } |
| 259 | |
| 260 | size_t capacity() const { |
| 261 | if (is_direct()) { |
| 262 | return N; |
| 263 | } else { |
| 264 | return _union.indirect_contents.capacity; |
| 265 | } |
| 266 | } |
| 267 | |
| 268 | T& operator[](size_type pos) { |
| 269 | return *item_ptr(pos); |
no outgoing calls
no test coverage detected