This commit is contained in:
Rhiannon Morris 2020-12-02 10:31:32 +01:00
parent 29d8387656
commit 512ae7d3d7
5 changed files with 257 additions and 5 deletions

5
bracket.mli Normal file
View file

@ -0,0 +1,5 @@
val bracket: make:(unit -> 'a) -> act:('a -> 'b) -> free:('a -> unit) -> 'b
val infile: act:(in_channel -> 'b) -> string -> 'b
val infile_lines: line:(string -> 'a) -> of_seq:('a Seq.t -> 'b) -> string -> 'b