package mdx
-
mdx.top
Legend:
Library
Module
Module type
Parameter
Class
Class type
Library
Module
Module type
Parameter
Class
Class type
val read : string -> file
read f
is the file f
. It's a costly operations, better to be done once.
val contents : file -> string
contents f
is f
contents.
val find : file -> part:string option -> string list option
find f ~part
returns the lines of the part part
in the file f
. Return None
if f
does not contain the part part
.