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

leveldb_create_iterator() private method

private leveldb_create_iterator ( IntPtr db, IntPtr options ) : IntPtr
db System.IntPtr
options System.IntPtr
return System.IntPtr
        public static extern IntPtr leveldb_create_iterator(IntPtr /* DB */ db, IntPtr /* ReadOption */ options);

Usage Example

Example #1
0
 /// <summary>
 /// Return an iterator over the contents of the database.
 /// The result of CreateIterator is initially invalid (caller must
 /// call one of the Seek methods on the iterator before using it).
 /// </summary>
 public Iterator CreateIterator(ReadOptions options)
 {
     return(new Iterator(LevelDbInterop.leveldb_create_iterator(Handle, options.Handle)));
 }