Top "Sortedset" questions

Represents a collection of unique objects that is maintained in sorted order.

C# SortedSet<T> and equality

I am a bit puzzled about the behaviour of SortedSet, see following example: public class Blah { public double Value { get; …

c# equals sortedset
Redis: Sum of SCORES in Sorted Set

What's the best way to get the sum of SCORES in a Redis sorted set?

sum redis sortedset
Understanding TreeSet when compareto returns 0

I have created a Student class like this: public class Student implements Comparable<Student> { private String firstName; private …

java collections compareto treeset sortedset
Can't I put a null in a SortedSet?

I thought that null is allowed for a Set. So why does the following code: SortedSet<Integer> set = …

java collections treeset sortedset
Redis: Is it possible sort ordered set result with same score by other key value

ZADD myset 1 ad1 ZADD myset 1 ad2 SET order:ad1 1 SET order:ad2 2 How to sort firstly by ordered set score …

redis sortedset
SortedSet / SortedList with better LINQ performance?

Let's say we have a sorted collection such as SortedSet or SortedList with many (10M+) elements. Lots of querying is …

.net linq linq-to-objects sortedlist sortedset