| 919 | } |
| 920 | |
| 921 | int zzlLexValueLteMax(unsigned char *p, zlexrangespec *spec) { |
| 922 | sds value = ziplistGetObject(p); |
| 923 | int res = zslLexValueLteMax(value,spec); |
| 924 | sdsfree(value); |
| 925 | return res; |
| 926 | } |
| 927 | |
| 928 | /* Returns if there is a part of the zset is in range. Should only be used |
| 929 | * internally by zzlFirstInRange and zzlLastInRange. */ |
no test coverage detected