Пример #1
0
 /// <summary>
 /// Moves to the previous entry in the source.
 /// After this call, IsValid() is true iff the iterator was not positioned at the first entry in source.
 /// REQUIRES: IsValid()
 /// </summary>
 public void Prev()
 {
     LevelDBInterop.leveldb_iter_prev(this.Handle);
     this.Throw();
 }
Пример #2
0
 /// <summary>
 /// Moves to the previous entry in the source.
 /// After this call, IsValid() is true iff the iterator was not positioned at the first entry in source.
 /// REQUIRES: IsValid()
 /// </summary>
 public void Prev()
 {
     LevelDBInterop.leveldb_iter_prev(Handle);
     Throw();
 }