type github.com/go-redis/redis/v8.Z

28 uses

	github.com/go-redis/redis/v8 (current package)
		command.go#L1483: 	val []Z
		command.go#L1497: func (cmd *ZSliceCmd) Val() []Z {
		command.go#L1501: func (cmd *ZSliceCmd) Result() ([]Z, error) {
		command.go#L1511: 		cmd.val = make([]Z, n/2)
		command.go#L1523: 			cmd.val[i] = Z{
		commands.go#L219: 	ZAdd(ctx context.Context, key string, members ...*Z) *IntCmd
		commands.go#L220: 	ZAddNX(ctx context.Context, key string, members ...*Z) *IntCmd
		commands.go#L221: 	ZAddXX(ctx context.Context, key string, members ...*Z) *IntCmd
		commands.go#L222: 	ZAddCh(ctx context.Context, key string, members ...*Z) *IntCmd
		commands.go#L223: 	ZAddNXCh(ctx context.Context, key string, members ...*Z) *IntCmd
		commands.go#L224: 	ZAddXXCh(ctx context.Context, key string, members ...*Z) *IntCmd
		commands.go#L225: 	ZIncr(ctx context.Context, key string, member *Z) *FloatCmd
		commands.go#L226: 	ZIncrNX(ctx context.Context, key string, member *Z) *FloatCmd
		commands.go#L227: 	ZIncrXX(ctx context.Context, key string, member *Z) *FloatCmd
		commands.go#L1673: type Z struct {
		commands.go#L1680: 	Z
		commands.go#L1720: func (c cmdable) zAdd(ctx context.Context, a []interface{}, n int, members ...*Z) *IntCmd {
		commands.go#L1731: func (c cmdable) ZAdd(ctx context.Context, key string, members ...*Z) *IntCmd {
		commands.go#L1739: func (c cmdable) ZAddNX(ctx context.Context, key string, members ...*Z) *IntCmd {
		commands.go#L1747: func (c cmdable) ZAddXX(ctx context.Context, key string, members ...*Z) *IntCmd {
		commands.go#L1755: func (c cmdable) ZAddCh(ctx context.Context, key string, members ...*Z) *IntCmd {
		commands.go#L1763: func (c cmdable) ZAddNXCh(ctx context.Context, key string, members ...*Z) *IntCmd {
		commands.go#L1771: func (c cmdable) ZAddXXCh(ctx context.Context, key string, members ...*Z) *IntCmd {
		commands.go#L1778: func (c cmdable) zIncr(ctx context.Context, a []interface{}, n int, members ...*Z) *FloatCmd {
		commands.go#L1789: func (c cmdable) ZIncr(ctx context.Context, key string, member *Z) *FloatCmd {
		commands.go#L1797: func (c cmdable) ZIncrNX(ctx context.Context, key string, member *Z) *FloatCmd {
		commands.go#L1805: func (c cmdable) ZIncrXX(ctx context.Context, key string, member *Z) *FloatCmd {
		result.go#L110: func NewZSliceCmdResult(val []Z, err error) *ZSliceCmd {