(ctx context.Context, key, min, max string)
| 211 | } |
| 212 | |
| 213 | func (c cmdable) ZCount(ctx context.Context, key, min, max string) *IntCmd { |
| 214 | cmd := NewIntCmd(ctx, "zcount", key, min, max) |
| 215 | _ = c(ctx, cmd) |
| 216 | return cmd |
| 217 | } |
| 218 | |
| 219 | func (c cmdable) ZLexCount(ctx context.Context, key, min, max string) *IntCmd { |
| 220 | cmd := NewIntCmd(ctx, "zlexcount", key, min, max) |
nothing calls this directly
no test coverage detected