(key string, count int64)
| 228 | } |
| 229 | |
| 230 | func (c Client) ZPOPMAX(key string, count int64) (membersWithScores map[string]float64, err error) { |
| 231 | return c.zPop(key, count, false) |
| 232 | } |
| 233 | |
| 234 | func (c Client) ZPOPMIN(key string, count int64) (membersWithScores map[string]float64, err error) { |
| 235 | return c.zPop(key, count, true) |