| 121 | size_type size() const { return size_; } |
| 122 | size_type size_bytes() const { return size() * sizeof(ElementType); } |
| 123 | bool empty() const __attribute__((warn_unused_result)) |
| 124 | { |
| 125 | return size() == 0; |
| 126 | } |
| 127 | |
| 128 | reference operator[](size_type idx) const |
| 129 | { |
no outgoing calls