ParamsTraverser allows you to define a custom procedure to traverse the parameters of a model. If a model implements this procedure, it will take precedence over the regular parameters visit.
| 13 | // ParamsTraverser allows you to define a custom procedure to traverse the parameters of a model. |
| 14 | // If a model implements this procedure, it will take precedence over the regular parameters visit. |
| 15 | type ParamsTraverser interface { |
| 16 | // TraverseParams visit each Param. |
| 17 | TraverseParams(callback func(param *Param)) |
| 18 | } |
| 19 | |
| 20 | // paramsTraversal allows the traversal of Model parameters. |
| 21 | // The given paramsFunc is invoked for each parameter of the Model. |
no outgoing calls
no test coverage detected