mirror of
https://github.com/LCPQ/quantum_package
synced 2024-10-31 19:23:50 +01:00
11 lines
244 B
OCaml
11 lines
244 B
OCaml
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
|