10
1
mirror of https://gitlab.com/scemama/QCaml.git synced 2024-06-26 07:02:06 +02:00
QCaml/particles/lib/zmatrix.mli
2020-12-29 02:38:12 +01:00

24 lines
531 B
OCaml

(* Type
*
* #+NAME: types *)
(* [[file:~/QCaml/particles/zmatrix.org::types][types]] *)
type t
(* types ends here *)
(* Conversion *)
(* [[file:~/QCaml/particles/zmatrix.org::*Conversion][Conversion:1]] *)
val of_string : string -> t
val to_xyz : t -> (Element.t * float * float * float) array
val to_xyz_string : t -> string
(* Conversion:1 ends here *)
(* Printers *)
(* [[file:~/QCaml/particles/zmatrix.org::*Printers][Printers:1]] *)
val pp : Format.formatter -> t -> unit
(* Printers:1 ends here *)