(val int64)
| 313 | } |
| 314 | |
| 315 | func NewIntLessEqualPredicate(val int64) IntLessEqualPredicate { |
| 316 | return IntLessEqualPredicate{value: val} |
| 317 | } |
| 318 | |
| 319 | func (p IntLessEqualPredicate) String() string { |
| 320 | return fmt.Sprintf("IntLessEqualPredicate{%d}", p.value) |
no outgoing calls
no test coverage detected