10
0
mirror of https://github.com/LCPQ/quantum_package synced 2024-06-15 09:45:25 +02:00
quantum_package/ocaml/Bit.mli

11 lines
244 B
OCaml
Raw Normal View History

type t = One | Zero with sexp
(** String conversions for printing *)
val to_string : t -> string
(** Logical operations *)
val and_operator : t -> t -> t
val or_operator : t -> t -> t
val xor_operator : t -> t -> t
val not_operator : t -> t