(min, max int64)
| 279 | var _ Predicate = (*IntBetweenPredicate)(nil) |
| 280 | |
| 281 | func NewIntBetweenPredicate(min, max int64) *IntBetweenPredicate { |
| 282 | return &IntBetweenPredicate{min, max} |
| 283 | } |
| 284 | |
| 285 | func (p *IntBetweenPredicate) String() string { |
| 286 | return fmt.Sprintf("IntBetweenPredicate{%d,%d}", p.min, p.max) |
no outgoing calls