(
self: SyncClientProtocol,
name: KeyT,
cursor: int = 0,
match: PatternT | None = None,
count: int | None = None,
score_cast_func: type | Callable = float,
)
| 6135 | |
| 6136 | @overload |
| 6137 | def zscan( |
| 6138 | self: SyncClientProtocol, |
| 6139 | name: KeyT, |
| 6140 | cursor: int = 0, |
| 6141 | match: PatternT | None = None, |
| 6142 | count: int | None = None, |
| 6143 | score_cast_func: type | Callable = float, |
| 6144 | ) -> ZScanResponse: ... |
| 6145 | |
| 6146 | @overload |
| 6147 | def zscan( |