You can search for identifiers within the package.
in-package search v0.2.0
Virtual file system management
type bigstring = (char, Stdlib.Bigarray.int8_unsigned_elt, Stdlib.Bigarray.c_layout) Stdlib.Bigarray.Array1.t
exception VSI_error
val of_buffer : string -> bigstring -> unit
of_buffer path buf create a new virtual file at path with the bytes from buf.
of_buffer path buf
path
buf
A reference to buf is kept internally until unlink is called.
unlink
VSI_error
if there is an error.
val unlink : string -> unit
unlink path removes path from the virtual filesystem. If any references are kept to external resources they are also released.
unlink path