(val int64)
| 255 | } |
| 256 | |
| 257 | func NewIntLessPredicate(val int64) IntLessPredicate { |
| 258 | return IntLessPredicate{value: val} |
| 259 | } |
| 260 | |
| 261 | func (p IntLessPredicate) String() string { |
| 262 | return fmt.Sprintf("IntLessPredicate{%d}", p.value) |
no outgoing calls
no test coverage detected