Exactly like RedisModule_ZsetFirstInScoreRange() but the last element of * the range is selected for the start of the iteration instead. */
| 2822 | /* Exactly like RedisModule_ZsetFirstInScoreRange() but the last element of |
| 2823 | * the range is selected for the start of the iteration instead. */ |
| 2824 | int RM_ZsetLastInScoreRange(RedisModuleKey *key, double min, double max, int minex, int maxex) { |
| 2825 | return zsetInitScoreRange(key,min,max,minex,maxex,0); |
| 2826 | } |
| 2827 | |
| 2828 | /* Helper function for RM_ZsetFirstInLexRange() and RM_ZsetLastInLexRange(). |
| 2829 | * Setup the sorted set iteration according to the specified lexicographical |
nothing calls this directly
no test coverage detected