| 259 | } |
| 260 | |
| 261 | inline const_reference operator[](size_t pos) const noexcept Y_LIFETIME_BOUND { |
| 262 | Y_ASSERT(pos <= length()); |
| 263 | |
| 264 | return this->data()[pos]; |
| 265 | } |
| 266 | |
| 267 | inline reference operator[](size_t pos) noexcept Y_LIFETIME_BOUND { |
| 268 | Y_ASSERT(pos <= length()); |