| 52 | } |
| 53 | [[nodiscard]] StringView Name() const { return this->name_; } |
| 54 | [[nodiscard]] auto cbegin() const { return this->values_.cbegin(); } // NOLINT |
| 55 | [[nodiscard]] auto cend() const { return this->values_.cend(); } // NOLINT |
| 56 | [[nodiscard]] auto begin() { return this->values_.begin(); } // NOLINT |
| 57 | [[nodiscard]] auto end() { return this->values_.end(); } // NOLINT |
no outgoing calls