(key string, start, stop int64)
| 261 | } |
| 262 | |
| 263 | func (c Client) ZRANGE(key string, start, stop int64) (membersWithScores map[string]float64, err error) { |
| 264 | return c.zRange(key, start, stop, true) |
| 265 | } |
| 266 | |
| 267 | func (c Client) zRange(key string, start int64, stop int64, forward bool) (membersWithScores map[string]float64, err error) { |
| 268 | if start < 0 && stop < 0 { |