For each on iterator
return the front of the iterator
Return the current key
Move to next item
Iterator created
Move to previous item
Seek to given slice.
Seek to front of data
Seek to end of data
Gets the current error status of the iterator
Iterator has more data to read
Return the current value
LeveldbException
auto opt = new Options; opt.create_if_missing = true; auto db = new DB(opt, "/my/db/") auto it = db.iterator; foreach(Slice key, Slice value; it) { writeln(key.as!string, " - ", value.as!string); }
DB Iterator
Can iterate the db