(val float64)
| 609 | } |
| 610 | |
| 611 | func NewFloatLessPredicate(val float64) FloatLessPredicate { |
| 612 | return FloatLessPredicate{value: val} |
| 613 | } |
| 614 | |
| 615 | func (p FloatLessPredicate) String() string { |
| 616 | return fmt.Sprintf("FloatLessPredicate{%f}", p.value) |
no outgoing calls
no test coverage detected