(val float64)
| 431 | } |
| 432 | |
| 433 | func NewFloatNotEqualPredicate(val float64) FloatNotEqualPredicate { |
| 434 | return FloatNotEqualPredicate{value: val} |
| 435 | } |
| 436 | |
| 437 | func (p FloatNotEqualPredicate) String() string { |
| 438 | return fmt.Sprintf("FloatNotEqualPredicate{%f}", p.value) |
no outgoing calls
no test coverage detected