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

SeekToLast() public method

Position at the last key in the source. The iterator is Valid() after this call iff the source is not empty.
public SeekToLast ( ) : void
return void
        public void SeekToLast() {
            LevelDbInterop.leveldb_iter_seek_to_last(Handle);
            Throw();
        }