(ctx context.Context, key string, offset int64, value int)
| 30 | } |
| 31 | |
| 32 | func (c cmdable) SetBit(ctx context.Context, key string, offset int64, value int) *IntCmd { |
| 33 | cmd := NewIntCmd( |
| 34 | ctx, |
| 35 | "setbit", |
| 36 | key, |
| 37 | offset, |
| 38 | value, |
| 39 | ) |
| 40 | _ = c(ctx, cmd) |
| 41 | return cmd |
| 42 | } |
| 43 | |
| 44 | type BitCount struct { |
| 45 | Start, End int64 |
nothing calls this directly
no test coverage detected