AddVariables adds a list of variables to the rule.
(v []*Variable)
| 239 | |
| 240 | // AddVariables adds a list of variables to the rule. |
| 241 | func (r *Rule) AddVariables(v []*Variable) { |
| 242 | r.variables = append(r.variables, v...) |
| 243 | } |
| 244 | |
| 245 | func (r *Rule) getExplanationOutputRule() *Rule { |
| 246 | if r == nil { |
no outgoing calls
no test coverage detected