mirror of
https://gitlab.com/scemama/QCaml.git
synced 2024-11-07 06:33:39 +01:00
24 lines
531 B
OCaml
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 *)
|