Type alias RocksDBIterator<K, V>

RocksDBIterator<K, V>: Opaque<"RocksDBIterator", object> & {
    [brandRocksDBIteratorK]: K;
    [brandRocksDBIteratorV]: V;
}

RocksDBIterator object A napi_external type If keys or values is set to false then K and V will be an empty buffer If keys and values is set to false, the iterator will give back empty array as entries

Type Parameters

  • K extends string | Buffer = string | Buffer

  • V extends string | Buffer = string | Buffer

Type declaration

  • Readonly [brandRocksDBIteratorK]: K
  • Readonly [brandRocksDBIteratorV]: V

Generated using TypeDoc