MCPcopy Create free account
hub / github.com/dbProjectRED/redimo.go / floatValues

Function floatValues

sorted_sets.go:284–290  ·  view source on GitHub ↗
(floatValuedMap map[string]float64)

Source from the content-addressed store, hash-verified

282}
283
284func floatValues(floatValuedMap map[string]float64) (values []float64) {
285 for _, v := range floatValuedMap {
286 values = append(values, v)
287 }
288
289 return
290}
291
292func (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)

Callers 1

zRangeMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected