Skip to content

Commit 1a0bda8

Browse files
authored
Merge pull request redis#368 from go-redis/fix/cmdable-iface
Fix Cmdable interface.
2 parents 60d35df + 73b28d0 commit 1a0bda8

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

commands.go

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,6 @@ type Cmdable interface {
7474
ZScan(key string, cursor uint64, match string, count int64) Scanner
7575
Append(key, value string) *IntCmd
7676
BitCount(key string, bitCount *BitCount) *IntCmd
77-
bitOp(op, destKey string, keys ...string) *IntCmd
7877
BitOpAnd(destKey string, keys ...string) *IntCmd
7978
BitOpOr(destKey string, keys ...string) *IntCmd
8079
BitOpXor(destKey string, keys ...string) *IntCmd
@@ -153,7 +152,6 @@ type Cmdable interface {
153152
ZAddCh(key string, members ...Z) *IntCmd
154153
ZAddNXCh(key string, members ...Z) *IntCmd
155154
ZAddXXCh(key string, members ...Z) *IntCmd
156-
zIncr(a []interface{}, n int, members ...Z) *FloatCmd
157155
ZIncr(key string, member Z) *FloatCmd
158156
ZIncrNX(key string, member Z) *FloatCmd
159157
ZIncrXX(key string, member Z) *FloatCmd

0 commit comments

Comments
 (0)