@@ -1063,6 +1063,7 @@ extension RedisClient {
1063
1063
/// - Parameters:
1064
1064
/// - key: The key of the SortedSet to return elements from.
1065
1065
/// - index: The index of the last element to not include in the returned values.
1066
+ /// - includeScores: If to include scores in the response.
1066
1067
/// - Returns: An array of elements from the start of the SortedSet and up to the index.
1067
1068
public func zrange(
1068
1069
from key: RedisKey ,
@@ -1082,6 +1083,7 @@ extension RedisClient {
1082
1083
/// - key: The key of the SortedSet
1083
1084
/// - firstIndex: The index of the first element to include in the range of elements returned.
1084
1085
/// - lastIndex: The index of the last element to include in the range of elements returned.
1086
+ /// - includeScores: If to include scores in the response.
1085
1087
/// - Returns: An array of elements found within the range specified.
1086
1088
public func zrevrange(
1087
1089
from key: RedisKey ,
@@ -1125,6 +1127,7 @@ extension RedisClient {
1125
1127
/// - Parameters:
1126
1128
/// - key: The key of the SortedSet to return elements from.
1127
1129
/// - range: The range of inclusive indices of elements to get.
1130
+ /// - includeScores: If to include scores in the response.
1128
1131
/// - Returns: An array of elements found within the range specified.
1129
1132
public func zrevrange(
1130
1133
from key: RedisKey ,
@@ -1172,6 +1175,7 @@ extension RedisClient {
1172
1175
/// - Parameters:
1173
1176
/// - key: The key of the SortedSet to return elements from.
1174
1177
/// - range: The range of indices (inclusive lower, exclusive upper) elements to get.
1178
+ /// - includeScores: If to include scores in the response.
1175
1179
/// - Returns: An array of elements found within the range specified.
1176
1180
public func zrevrange(
1177
1181
from key: RedisKey ,
@@ -1205,6 +1209,7 @@ extension RedisClient {
1205
1209
/// - Parameters:
1206
1210
/// - key: The key of the SortedSet to return elements from.
1207
1211
/// - index: The index of the first element that will be in the returned values.
1212
+ /// - includeScores: If to include scores in the response.
1208
1213
/// - Returns: An array of elements from the SortedSet between the index and the end.
1209
1214
public func zrevrange(
1210
1215
from key: RedisKey ,
0 commit comments