vibe.d beta banner
get vibe.d
0.10.0

Asynchronous I/O that doesn’t get in your way, written in D

Struct RedisList

Represents a Redis list value.

struct RedisList(T) ;

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

Constructors

NameDescription
this (db, key)

Fields

NameTypeDescription
value RedisValue

Methods

NameDescription
insertAfter (pivot, value)
insertBack (value)
insertBackIfExists (value)
insertBefore (pivot, value)
insertFront (value)
insertFrontIfExists (value)
length ()
opApply (del)
opDollar ()
opIndex (index)
opIndex (index)
opIndexAssign (value, index)
opIndexAssign (value, index)
opSlice (start, end)
opSlice ()
removeAll (value)
removeBack ()
removeFirst (value, count)
removeFront ()
removeFrontBlock (max_wait)
removeLast (value, count)
trim (start, end)

Inner structs

NameDescription
Dollar
Authors

Sönke Ludwig

Copyright

© 2014 Sönke Ludwig

License

Subject to the terms of the MIT license, as written in the included LICENSE.txt file.