Methods for accessing and manipulating the Shape of the parameters.
| 272 | |
| 273 | // Methods for accessing and manipulating the Shape of the parameters. |
| 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() { |