You can search for identifiers within the package.
in-package search v0.2.0
type file
An abstract type of files.
val load : string -> file
load file_path loads the resource at file_path.
load file_path
file_path
val length : file -> int
length file_path gets the size of the file.
length file_path
val unsafe_get : file -> int -> char
unsafe_get file_path i reads the ith byte of the file without checking the file size.
unsafe_get file_path i