leveldb_iter_seek_to_last() private method

private leveldb_iter_seek_to_last ( IntPtr iterator ) : void
iterator System.IntPtr
return void
Exemplo n.º 1
0
 /// <summary>
 /// Position at the last key in the source.
 /// The iterator is Valid() after this call iff the source is not empty.
 /// </summary>
 public void SeekToLast()
 {
     LevelDbInterop.leveldb_iter_seek_to_last(Handle);
     Throw();
 }