(v Value, i float64)
| 41 | } |
| 42 | |
| 43 | func (p *Program) ValueLessThan_float(v Value, i float64) Condition { |
| 44 | return func(e *Env) bool { |
| 45 | realized := v(e) |
| 46 | return realized < i |
| 47 | } |
| 48 | } |
| 49 | |
| 50 | type Condition func(e *Env) bool |
| 51 | type Conditions []Condition |
nothing calls this directly
no outgoing calls
no test coverage detected