(a Conditions, b Condition)
| 30 | } |
| 31 | |
| 32 | func (p *Program) AndConditions(a Conditions, b Condition) Conditions { |
| 33 | return append(a, b) |
| 34 | } |
| 35 | |
| 36 | func (p *Program) ValueGreaterThan_float(v Value, i float64) Condition { |
| 37 | return func(e *Env) bool { |
nothing calls this directly
no outgoing calls
no test coverage detected