(val float64)
| 667 | } |
| 668 | |
| 669 | func NewFloatLessEqualPredicate(val float64) FloatLessEqualPredicate { |
| 670 | return FloatLessEqualPredicate{value: val} |
| 671 | } |
| 672 | |
| 673 | func (p FloatLessEqualPredicate) String() string { |
| 674 | return fmt.Sprintf("FloatLessEqualPredicate{%f}", p.value) |
no outgoing calls
no test coverage detected