| 305 | } |
| 306 | |
| 307 | int zslValueLteMax(double value, zrangespec *spec) { |
| 308 | return spec->maxex ? (value < spec->max) : (value <= spec->max); |
| 309 | } |
| 310 | |
| 311 | /* Returns if there is a part of the zset is in range. */ |
| 312 | int zslIsInRange(zskiplist *zsl, zrangespec *range) { |
no outgoing calls
no test coverage detected