IntBetweenPredicate checks for int between the bounds [min,max] inclusive
| 273 | |
| 274 | // IntBetweenPredicate checks for int between the bounds [min,max] inclusive |
| 275 | type IntBetweenPredicate struct { |
| 276 | min, max int64 |
| 277 | } |
| 278 | |
| 279 | var _ Predicate = (*IntBetweenPredicate)(nil) |
| 280 |
nothing calls this directly
no outgoing calls
no test coverage detected