(val float64)
| 550 | } |
| 551 | |
| 552 | func NewFloatGreaterEqualPredicate(val float64) FloatGreaterEqualPredicate { |
| 553 | return FloatGreaterEqualPredicate{value: val} |
| 554 | } |
| 555 | |
| 556 | func (p FloatGreaterEqualPredicate) String() string { |
| 557 | return fmt.Sprintf("FloatGreaterEqualPredicate{%f}", p.value) |
no outgoing calls
no test coverage detected