| 44 | const_reference operator[](size_type i) const { return values_[i]; } |
| 45 | reference operator[](size_type i) { return values_[i]; } |
| 46 | [[nodiscard]] bool empty() const { return values_.empty(); } // NOLINT |
| 47 | [[nodiscard]] std::size_t size() const { return values_.size(); } // NOLINT |
| 48 | [[nodiscard]] auto data() const { return values_.data(); } // NOLINT |
| 49 | ParamArray& operator=(std::vector<T> const& that) { |
no outgoing calls
no test coverage detected