| 249 | reference operator[](size_type pos) noexcept { return this->Batches[pos]; } |
| 250 | const_reference operator[](size_type pos) const noexcept { return this->Batches[pos]; } |
| 251 | iterator begin() noexcept { return this->Batches.begin(); } |
| 252 | const_iterator begin() const noexcept { return this->Batches.begin(); } |
| 253 | const_iterator cbegin() const noexcept { return this->Batches.cbegin(); } |
| 254 | iterator end() noexcept { return this->Batches.end(); } |