AcTools.LapTimes.LevelDbUtils.Iterator.Next C# (CSharp) Method

Next() public method

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()
public Next ( ) : void
return void
        public void Next() {
            LevelDbInterop.leveldb_iter_next(Handle);
            Throw();
        }