10
1
mirror of https://gitlab.com/scemama/QCaml.git synced 2024-06-21 12:42:05 +02:00
QCaml/common/charge.org
2021-01-01 11:52:08 +01:00

2.0 KiB

Charge

Type

type t

This type should be used for all charges in the program (electrons, nuclei,…).

Conversions

val of_float : float -> t
val to_float : t -> float

val of_int   : int -> t
val to_int   : t -> int

val of_string: string -> t
val to_string: t -> string

Simple operations

val ( + ) : t -> t -> t
val ( - ) : t -> t -> t
val ( * ) : t -> float -> t
val ( / ) : t -> float -> t 
val is_null : t -> bool

Printers

val pp : Format.formatter -> t -> unit