leveldb_iter_next() private méthode

private leveldb_iter_next ( IntPtr iterator ) : void
iterator System.IntPtr
Résultat void
Exemple #1
0
 /// <summary>
 /// Moves to the next entry in the source.
 /// After this call, Valid() is true iff the iterator was not positioned at the last entry in the source.
 /// REQUIRES: Valid()
 /// </summary>
 public void Next()
 {
     LevelDbInterop.leveldb_iter_next(Handle);
     Throw();
 }