Skip to content

Commit

Permalink
doc: readme - remove hard wrap in tables
Browse files Browse the repository at this point in the history
  • Loading branch information
nalgeon committed Apr 30, 2024
1 parent e01aa11 commit 21951bc
Showing 1 changed file with 5 additions and 10 deletions.
15 changes: 5 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -109,24 +109,19 @@ Command Go API Description
------- ------ -----------
ZADD DB.ZSet().AddMany Adds or updates one or more members of a set.
ZCARD DB.ZSet().Len Returns the number of members in a set.
ZCOUNT DB.ZSet().Count Returns the number of members of a set within a range
of scores.
ZCOUNT DB.ZSet().Count Returns the number of members of a set within a range of scores.
ZINCRBY DB.ZSet().Incr Increments the score of a member in a set.
ZINTER DB.ZSet().InterWith Returns the intersection of multiple sets.
ZINTERSTORE DB.ZSet().InterWith Stores the intersection of multiple sets in a key.
ZRANGE DB.ZSet().RangeWith Returns members of a set within a range of indexes.
ZRANGEBYSCORE DB.ZSet().RangeWith Returns members of a set within a range of scores.
ZRANK DB.ZSet().GetRank Returns the index of a member in a set ordered
by ascending scores.
ZRANK DB.ZSet().GetRank Returns the index of a member in a set ordered by ascending scores.
ZREM DB.ZSet().Delete Removes one or more members from a set.
ZREMRANGEBYRANK DB.ZSet().DeleteWith Removes members of a set within a range of indexes.
ZREMRANGEBYSCORE DB.ZSet().DeleteWith Removes members of a set within a range of scores.
ZREVRANGE DB.ZSet().RangeWith Returns members of a set within a range of indexes
in reverse order.
ZREVRANGEBYSCORE DB.ZSet().RangeWith Returns members of a set within a range of scores
in reverse order.
ZREVRANK DB.ZSet().GetRankRev Returns the index of a member in a set ordered
by descending scores.
ZREVRANGE DB.ZSet().RangeWith Returns members of a set within a range of indexes in reverse order.
ZREVRANGEBYSCORE DB.ZSet().RangeWith Returns members of a set within a range of scores in reverse order.
ZREVRANK DB.ZSet().GetRankRev Returns the index of a member in a set ordered by descending scores.
ZSCAN DB.ZSet().Scan Iterates over members and scores of a set.
ZSCORE DB.ZSet().GetScore Returns the score of a member in a set.
ZUNION DB.ZSet().UnionWith Returns the union of multiple sets.
Expand Down

0 comments on commit 21951bc

Please sign in to comment.