Count elements in a sorted set by score.
(key: str, min: int, max: int)
| 167 | |
| 168 | |
| 169 | def zcount(key: str, min: int, max: int) -> int: |
| 170 | """Count elements in a sorted set by score.""" |
| 171 | return _backend.zcount(key, min, max) |
nothing calls this directly
no test coverage detected
searching dependent graphs…