* C++ style conventional iterator support. const only because we * do not really want the params to be modified via the iterator. */
| 8574 | * do not really want the params to be modified via the iterator. |
| 8575 | */ |
| 8576 | inline auto begin() const { return params.begin(); } |
| 8577 | inline auto end() const { return params.end(); } |
| 8578 | inline auto front() const { return params.front(); } |
| 8579 | inline auto back() const { return params.back(); } |
no outgoing calls
no test coverage detected