| 274 | int parameters_size() const { return parameters_.size(); } |
| 275 | const Shape& parameters(int index) const { return parameters_.at(index); } |
| 276 | Shape* mutable_parameters(int index) { return ¶meters_.at(index); } |
| 277 | Shape* add_parameters() { |
| 278 | parameters_.emplace_back(); |
| 279 | return ¶meters_.back(); |
no test coverage detected