| 36 | zskiplistNode* zslGetElementByRank(zskiplist *zsl, unsigned long rank); |
| 37 | |
| 38 | redisSortOperation *createSortOperation(int type, robj *pattern) { |
| 39 | redisSortOperation *so = (redisSortOperation*)zmalloc(sizeof(*so), MALLOC_LOCAL); |
| 40 | so->type = type; |
| 41 | so->pattern = pattern; |
| 42 | return so; |
| 43 | } |
| 44 | |
| 45 | /* Return the value associated to the key with a name obtained using |
| 46 | * the following rules: |
no test coverage detected