- add
bool add(E e)
Undocumented in source. Be warned that the author may not have intended to support it.
- clear
void clear()
Undocumented in source. Be warned that the author may not have intended to support it.
- contains
bool contains(E o)
Undocumented in source. Be warned that the author may not have intended to support it.
- containsAll
bool containsAll(Collection!E c)
Undocumented in source. Be warned that the author may not have intended to support it.
- isEmpty
bool isEmpty()
Undocumented in source. Be warned that the author may not have intended to support it.
- opEquals
bool opEquals(Object o)
Undocumented in source. Be warned that the author may not have intended to support it.
- remove
bool remove(E o)
Undocumented in source. Be warned that the author may not have intended to support it.
- removeAll
bool removeAll(Collection!E c)
Undocumented in source. Be warned that the author may not have intended to support it.
- retainAll
bool retainAll(Collection!E c)
Undocumented in source. Be warned that the author may not have intended to support it.
- size
int size()
Undocumented in source. Be warned that the author may not have intended to support it.
- toArray
E[] toArray()
Undocumented in source. Be warned that the author may not have intended to support it.
- toHash
size_t toHash()
Undocumented in source. Be warned that the author may not have intended to support it.
- toString
string toString()
Undocumented in source. Be warned that the author may not have intended to support it.
A decorator to implement Set from List. Assume that given List do not contains duplicated values. The resulting set displays the same ordering, concurrency, and performance characteristics as the backing list. This class should be used only for Redis commands which return Set result. @param <E>