10
1
mirror of https://gitlab.com/scemama/QCaml.git synced 2024-06-26 15:12:05 +02:00
QCaml/common/lib/range.mli

23 lines
453 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:55:03 +01:00
(* [[file:~/QCaml/common/range.org::*Type][Type:1]] *)
2020-12-28 01:08:55 +01:00
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:55:03 +01:00
(* [[file:~/QCaml/common/range.org::*Conversion][Conversion:1]] *)
2020-12-28 01:08:55 +01:00
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:55:03 +01:00
(* [[file:~/QCaml/common/range.org::*Printers][Printers:1]] *)
2020-12-28 01:08:55 +01:00
val pp : Format.formatter -> t -> unit
(* Printers:1 ends here *)