You can search for identifiers within the package.
in-package search v0.2.0
Local file decoding.
Convenience module to * decode local files
type file
File variant type for a file decoder
type handle = {
fd : Unix.file_descr;
dec : file t;
callbacks : file callbacks;
info : info;
comments : (string * (string * string) list) option;
}
val create_from_fd : write -> Unix.file_descr -> handle
Create a file decoder from a Unix file * descriptor * * Note: this decoder requires seeking thus will only work on seekable * file descriptor.
val create : write -> string -> handle
Create a file decoder from a file URI