(floatValuedMap map[string]float64)
| 282 | } |
| 283 | |
| 284 | func floatValues(floatValuedMap map[string]float64) (values []float64) { |
| 285 | for _, v := range floatValuedMap { |
| 286 | values = append(values, v) |
| 287 | } |
| 288 | |
| 289 | return |
| 290 | } |
| 291 | |
| 292 | func (c Client) ZRANGEBYLEX(key string, min, max string, offset, count int64) (membersWithScores map[string]float64, err error) { |
| 293 | return c.zGeneralRange(key, zLex{min}, zLex{max}, offset, count, true, c.sk) |