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

22 uses

	github.com/go-redis/redis/v8 (current package)
		command.go#L1480: type ZSliceCmd struct {
		command.go#L1486: var _ Cmder = (*ZSliceCmd)(nil)
		command.go#L1488: func NewZSliceCmd(ctx context.Context, args ...interface{}) *ZSliceCmd {
		command.go#L1489: 	return &ZSliceCmd{
		command.go#L1497: func (cmd *ZSliceCmd) Val() []Z {
		command.go#L1501: func (cmd *ZSliceCmd) Result() ([]Z, error) {
		command.go#L1505: func (cmd *ZSliceCmd) String() string {
		command.go#L1509: func (cmd *ZSliceCmd) readReply(rd *proto.Reader) error {
		commands.go#L233: 	ZPopMax(ctx context.Context, key string, count ...int64) *ZSliceCmd
		commands.go#L234: 	ZPopMin(ctx context.Context, key string, count ...int64) *ZSliceCmd
		commands.go#L236: 	ZRangeWithScores(ctx context.Context, key string, start, stop int64) *ZSliceCmd
		commands.go#L239: 	ZRangeByScoreWithScores(ctx context.Context, key string, opt *ZRangeBy) *ZSliceCmd
		commands.go#L246: 	ZRevRangeWithScores(ctx context.Context, key string, start, stop int64) *ZSliceCmd
		commands.go#L249: 	ZRevRangeByScoreWithScores(ctx context.Context, key string, opt *ZRangeBy) *ZSliceCmd
		commands.go#L1858: func (c cmdable) ZPopMax(ctx context.Context, key string, count ...int64) *ZSliceCmd {
		commands.go#L1878: func (c cmdable) ZPopMin(ctx context.Context, key string, count ...int64) *ZSliceCmd {
		commands.go#L1917: func (c cmdable) ZRangeWithScores(ctx context.Context, key string, start, stop int64) *ZSliceCmd {
		commands.go#L1954: func (c cmdable) ZRangeByScoreWithScores(ctx context.Context, key string, opt *ZRangeBy) *ZSliceCmd {
		commands.go#L2015: func (c cmdable) ZRevRangeWithScores(ctx context.Context, key string, start, stop int64) *ZSliceCmd {
		commands.go#L2044: func (c cmdable) ZRevRangeByScoreWithScores(ctx context.Context, key string, opt *ZRangeBy) *ZSliceCmd {
		result.go#L110: func NewZSliceCmdResult(val []Z, err error) *ZSliceCmd {
		result.go#L111: 	var cmd ZSliceCmd