(ctx context.Context, key, min, max string)
| 217 | } |
| 218 | |
| 219 | func (c cmdable) ZLexCount(ctx context.Context, key, min, max string) *IntCmd { |
| 220 | cmd := NewIntCmd(ctx, "zlexcount", key, min, max) |
| 221 | _ = c(ctx, cmd) |
| 222 | return cmd |
| 223 | } |
| 224 | |
| 225 | func (c cmdable) ZIncrBy(ctx context.Context, key string, increment float64, member string) *FloatCmd { |
| 226 | cmd := NewFloatCmd(ctx, "zincrby", key, increment, member) |
nothing calls this directly
no test coverage detected