RedisSet

Represents a Redis set value.

In addition to the methods specific to set values, all operations of RedisValue are available using an alias this declaration.

Constructors

this
this(RedisDatabase db, string key)
Undocumented in source.

Alias This

value

Members

Functions

contains
bool contains(T value)
Undocumented in source. Be warned that the author may not have intended to support it.
getAll
auto getAll()
Undocumented in source. Be warned that the author may not have intended to support it.
getRandom
string getRandom()
Undocumented in source. Be warned that the author may not have intended to support it.
insert
long insert(ARGS args)
Undocumented in source. Be warned that the author may not have intended to support it.
intersects
bool intersects(RedisSet[] sets)
Undocumented in source. Be warned that the author may not have intended to support it.
length
long length()
Undocumented in source. Be warned that the author may not have intended to support it.
opApply
int opApply(int delegate(T value) del)
Undocumented in source. Be warned that the author may not have intended to support it.
pop
string pop()
Undocumented in source. Be warned that the author may not have intended to support it.
remove
long remove(T value)
Undocumented in source. Be warned that the author may not have intended to support it.
remove
bool remove()
Undocumented in source. Be warned that the author may not have intended to support it.

Variables

value
RedisValue value;
Undocumented in source.

Meta