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

SeekToFirst() public method

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