package orocksdb

  1. Overview
  2. Docs
module ReadOptions : sig ... end
exception InvalidIterator
type t
val get_pointer : t -> unit Ctypes.ptr
val create : ?opts:ReadOptions.t -> t -> t
val with_t : ?opts:ReadOptions.t -> t -> f:(t -> 'a) -> 'a
val is_valid : t -> bool
val seek_to_first : t -> unit
val seek_to_last : t -> unit
val seek : ?pos:int -> ?len:int -> t -> Rocks_intf.bigarray -> unit
val seek_string : ?pos:int -> ?len:int -> t -> string -> unit
val next : t -> unit
val prev : t -> unit
val get_key_string : t -> string
val get_key : t -> Rocks_intf.bigarray
val get_value_string : t -> string
val get_value : t -> Rocks_intf.bigarray
val get_error : t -> string option