Struct RedisSet
Represents a Redis set value.
struct RedisSet(T)
;
In addition to the methods specific to set values, all operations of
RedisValue
are available using an alias this
declaration.
Constructors
Name | Description |
---|---|
this
(db, key)
|
Fields
Name | Type | Description |
---|---|---|
value
|
RedisValue |
Methods
Name | Description |
---|---|
contains
(value)
|
|
getAll
()
|
|
getRandom
()
|
|
insert
(args)
|
|
intersects
()
|
|
length
()
|
|
opApply
(del)
|
|
pop
()
|
|
remove
(value)
|
|
remove
()
|