(v Value, i float64)
| 34 | } |
| 35 | |
| 36 | func (p *Program) ValueGreaterThan_float(v Value, i float64) Condition { |
| 37 | return func(e *Env) bool { |
| 38 | realized := v(e) |
| 39 | return realized > i |
| 40 | } |
| 41 | } |
| 42 | |
| 43 | func (p *Program) ValueLessThan_float(v Value, i float64) Condition { |
| 44 | return func(e *Env) bool { |
nothing calls this directly
no outgoing calls
no test coverage detected