qp2/ocaml/Primitive.mli

12 lines
216 B
OCaml
Raw Normal View History

2019-01-25 11:39:31 +01:00
type t =
2021-05-21 16:42:48 +02:00
{ sym : Angmom.t;
2019-01-25 11:39:31 +01:00
expo : Qptypes.AO_expo.t;
} [@@deriving sexp]
(** Conversion to string for printing *)
val to_string : t -> string
(** Creation *)
2021-05-21 16:42:48 +02:00
val of_sym_expo : Angmom.t -> Qptypes.AO_expo.t -> t
2019-01-25 11:39:31 +01:00