| 160 | using TBase::empty; |
| 161 | |
| 162 | size_type size() const { |
| 163 | return std::end(*this->Container.Ptr()) - std::begin(*this->Container.Ptr()); |
| 164 | } |
| 165 | |
| 166 | const_reference operator[](size_t at) const { |
| 167 | Y_ASSERT(at < this->size()); |
no test coverage detected