Exactly like RedisModule_ZsetFirstInLexRange() but the last element of * the range is selected for the start of the iteration instead. */
| 2884 | /* Exactly like RedisModule_ZsetFirstInLexRange() but the last element of |
| 2885 | * the range is selected for the start of the iteration instead. */ |
| 2886 | int RM_ZsetLastInLexRange(RedisModuleKey *key, RedisModuleString *min, RedisModuleString *max) { |
| 2887 | return zsetInitLexRange(key,min,max,0); |
| 2888 | } |
| 2889 | |
| 2890 | /* Return the current sorted set element of an active sorted set iterator |
| 2891 | * or NULL if the range specified in the iterator does not include any |
nothing calls this directly
no test coverage detected