| 333 | size_type size() const { return contents_size_; } |
| 334 | size_type capacity() const { return array_size_; } |
| 335 | bool empty() const { return !contents_size_; } |
| 336 | size_type max_size() const |
| 337 | { |
| 338 | return alloc_.max_size(); |
no outgoing calls
no test coverage detected