Add elements to a sorted set.
(key: str, mapping: dict)
| 157 | |
| 158 | |
| 159 | def zadd(key: str, mapping: dict) -> None: |
| 160 | """Add elements to a sorted set.""" |
| 161 | _backend.zadd(key, mapping) |
| 162 | |
| 163 | |
| 164 | def zremrangebyscore(key: str, min: int, max: int) -> None: |
nothing calls this directly
no test coverage detected
searching dependent graphs…