(val int64)
| 17 | } |
| 18 | |
| 19 | func NewIntEqualPredicate(val int64) IntEqualPredicate { |
| 20 | return IntEqualPredicate{value: val} |
| 21 | } |
| 22 | |
| 23 | func (p IntEqualPredicate) String() string { |
| 24 | return fmt.Sprintf("IntEqualPredicate{%d}", p.value) |
no outgoing calls
no test coverage detected