github.com/go-redis/redis/v8.cmdable.bitOp (method)

5 uses

	github.com/go-redis/redis/v8 (current package)
		commands.go#L863: func (c cmdable) bitOp(ctx context.Context, op, destKey string, keys ...string) *IntCmd {
		commands.go#L877: 	return c.bitOp(ctx, "and", destKey, keys...)
		commands.go#L881: 	return c.bitOp(ctx, "or", destKey, keys...)
		commands.go#L885: 	return c.bitOp(ctx, "xor", destKey, keys...)
		commands.go#L889: 	return c.bitOp(ctx, "not", destKey, key)