Set

Set A class that represents a SET structure in redis. Allows you to query and manipulate the set using methods. Implements OutputRange.

NOTE: Operations are done on the server side as much as possible, to reflect the true state of the collection.

Constructors

this
this(Redis conn, string name)
Undocumented in source.

Members

Aliases

count
alias count = scard
Undocumented in source.

Functions

del
int del()
Undocumented in source. Be warned that the author may not have intended to support it.
opAssign
void opAssign(const(char[]) value)
Undocumented in source. Be warned that the author may not have intended to support it.
opAssign
void opAssign(const(char[])[] values)
Undocumented in source. Be warned that the author may not have intended to support it.
opOpAssign
void opOpAssign(char[] value)
Undocumented in source. Be warned that the author may not have intended to support it.
opOpAssign
void opOpAssign(char[] value)
Undocumented in source. Be warned that the author may not have intended to support it.
opOpAssign
void opOpAssign(const(char[])[] values)
Undocumented in source. Be warned that the author may not have intended to support it.
opOpAssign
void opOpAssign(const(char[])[] values)
Undocumented in source. Be warned that the author may not have intended to support it.
put
int put(char[] value)
Undocumented in source. Be warned that the author may not have intended to support it.
put
int put(const(char[])[] values)
Undocumented in source. Be warned that the author may not have intended to support it.
smembers
auto smembers()
Undocumented in source. Be warned that the author may not have intended to support it.
srem
int srem(const(char[])[] values)
Undocumented in source. Be warned that the author may not have intended to support it.

Properties

scard
int scard [@property getter]
Undocumented in source. Be warned that the author may not have intended to support it.

Meta