(val float64)
| 491 | } |
| 492 | |
| 493 | func NewFloatGreaterPredicate(val float64) FloatGreaterPredicate { |
| 494 | return FloatGreaterPredicate{value: val} |
| 495 | } |
| 496 | |
| 497 | func (p FloatGreaterPredicate) String() string { |
| 498 | return fmt.Sprintf("FloatGreaterPredicate{%f}", p.value) |
no outgoing calls
no test coverage detected