10
1
mirror of https://gitlab.com/scemama/QCaml.git synced 2024-11-19 12:32:21 +01:00
QCaml/common/lib/range.mli

23 lines
417 B
OCaml
Raw Normal View History

2020-12-28 01:08:55 +01:00
(* Type *)
2019-02-20 18:15:15 +01:00
2020-12-28 01:08:55 +01:00
(* [[file:../range.org::*Type][Type:1]] *)
type t
(* Type:1 ends here *)
2019-02-20 18:15:15 +01:00
2020-12-28 01:08:55 +01:00
(* Conversion *)
2019-02-20 18:15:15 +01:00
2020-12-28 01:08:55 +01:00
(* [[file:../range.org::*Conversion][Conversion:1]] *)
val of_string : string -> t
val to_string : t -> string
2019-02-20 18:15:15 +01:00
val to_int_list : t -> int list
2020-12-28 01:08:55 +01:00
(* Conversion:1 ends here *)
2019-02-20 18:15:15 +01:00
2020-12-28 01:08:55 +01:00
(* Printers *)
2019-02-20 18:15:15 +01:00
2020-12-28 01:08:55 +01:00
(* [[file:../range.org::*Printers][Printers:1]] *)
val pp : Format.formatter -> t -> unit
(* Printers:1 ends here *)