(a, b Condition)
| 26 | } |
| 27 | |
| 28 | func (p *Program) AndCondition(a, b Condition) Conditions { |
| 29 | return Conditions{a, b} |
| 30 | } |
| 31 | |
| 32 | func (p *Program) AndConditions(a Conditions, b Condition) Conditions { |
| 33 | return append(a, b) |
nothing calls this directly
no outgoing calls
no test coverage detected