(key string, count int64)
| 232 | } |
| 233 | |
| 234 | func (c Client) ZPOPMIN(key string, count int64) (membersWithScores map[string]float64, err error) { |
| 235 | return c.zPop(key, count, true) |
| 236 | } |
| 237 | |
| 238 | var negInf = zScore{math.Inf(-1)} |
| 239 | var posInf = zScore{math.Inf(+1)} |