Module FFI.Constant

type t = private
  1. | PYCBool of bool
  2. | PYCInt of Z.t
  3. | PYCFloat of float
  4. | PYCComplex of {
    1. real : float;
    2. imag : float;
    }
  5. | PYCString of string
  6. | PYCInvalidUnicode of int array
  7. | PYCBytes of bytes
  8. | PYCTuple of t array
  9. | PYCFrozenSet of t list
  10. | PYCCode of Code.t
  11. | PYCNone
include Ppx_compare_lib.Comparable.S with type t := t
val compare : t Base__Ppx_compare_lib.compare
include Ppx_compare_lib.Equal.S with type t := t
val equal : t Base__Ppx_compare_lib.equal