From 73b28d0372e37e8f06d96539a57818d34d6c4e06 Mon Sep 17 00:00:00 2001 From: Vladimir Mihailenco Date: Wed, 14 Sep 2016 10:01:56 +0000 Subject: [PATCH] Fix Cmdable interface. --- commands.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/commands.go b/commands.go index 3d3fe2f6..8277418d 100644 --- a/commands.go +++ b/commands.go @@ -74,7 +74,6 @@ type Cmdable interface { ZScan(key string, cursor uint64, match string, count int64) Scanner Append(key, value string) *IntCmd BitCount(key string, bitCount *BitCount) *IntCmd - bitOp(op, destKey string, keys ...string) *IntCmd BitOpAnd(destKey string, keys ...string) *IntCmd BitOpOr(destKey string, keys ...string) *IntCmd BitOpXor(destKey string, keys ...string) *IntCmd @@ -153,7 +152,6 @@ type Cmdable interface { ZAddCh(key string, members ...Z) *IntCmd ZAddNXCh(key string, members ...Z) *IntCmd ZAddXXCh(key string, members ...Z) *IntCmd - zIncr(a []interface{}, n int, members ...Z) *FloatCmd ZIncr(key string, member Z) *FloatCmd ZIncrNX(key string, member Z) *FloatCmd ZIncrXX(key string, member Z) *FloatCmd