AcTools.LapTimes.LevelDbUtils.LevelDbInterop.leveldb_iter_prev C# (CSharp) Method

leveldb_iter_prev() private method

private leveldb_iter_prev ( IntPtr iterator ) : void
iterator System.IntPtr
return void
        public static extern void leveldb_iter_prev(IntPtr /*Iterator*/ iterator);

Usage Example

コード例 #1
0
ファイル: Iterator.cs プロジェクト: WildGenie/actools
 /// <summary>
 /// Moves to the previous entry in the source.
 /// After this call, Valid() is true iff the iterator was not positioned at the first entry in source.
 /// REQUIRES: Valid()
 /// </summary>
 public void Prev()
 {
     LevelDbInterop.leveldb_iter_prev(Handle);
     Throw();
 }