Exactly like RedisModule_ZsetFirstInScoreRange() but the last element of * the range is selected for the start of the iteration instead. */
| 2910 | /* Exactly like RedisModule_ZsetFirstInScoreRange() but the last element of |
| 2911 | * the range is selected for the start of the iteration instead. */ |
| 2912 | int RM_ZsetLastInScoreRange(RedisModuleKey *key, double min, double max, int minex, int maxex) { |
| 2913 | return zsetInitScoreRange(key,min,max,minex,maxex,0); |
| 2914 | } |
| 2915 | |
| 2916 | /* Helper function for RM_ZsetFirstInLexRange() and RM_ZsetLastInLexRange(). |
| 2917 | * Setup the sorted set iteration according to the specified lexicographical |
nothing calls this directly
no test coverage detected