package coq-serapi

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type t = CPrimitives.t =
  1. | Int63head0
  2. | Int63tail0
  3. | Int63add
  4. | Int63sub
  5. | Int63mul
  6. | Int63div
  7. | Int63mod
  8. | Int63divs
  9. | Int63mods
  10. | Int63lsr
  11. | Int63lsl
  12. | Int63asr
  13. | Int63land
  14. | Int63lor
  15. | Int63lxor
  16. | Int63addc
  17. | Int63subc
  18. | Int63addCarryC
  19. | Int63subCarryC
  20. | Int63mulc
  21. | Int63diveucl
  22. | Int63div21
  23. | Int63addMulDiv
  24. | Int63eq
  25. | Int63lt
  26. | Int63le
  27. | Int63lts
  28. | Int63les
  29. | Int63compare
  30. | Int63compares
  31. | Float64opp
  32. | Float64abs
  33. | Float64eq
  34. | Float64lt
  35. | Float64le
  36. | Float64compare
  37. | Float64equal
  38. | Float64classify
  39. | Float64add
  40. | Float64sub
  41. | Float64mul
  42. | Float64div
  43. | Float64sqrt
  44. | Float64ofUint63
  45. | Float64normfr_mantissa
  46. | Float64frshiftexp
  47. | Float64ldshiftexp
  48. | Float64next_up
  49. | Float64next_down
  50. | Arraymake
  51. | Arrayget
  52. | Arraydefault
  53. | Arrayset
  54. | Arraycopy
  55. | Arraylength
val to_yojson : t -> Yojson.Safe.t
val t_of_sexp : Sexplib0.Sexp.t -> t
val sexp_of_t : t -> Sexplib0.Sexp.t
val hash_fold_t : Base.Hash.state -> t -> Base.Hash.state
val hash : t -> Base.Hash.hash_value
val compare : t -> t -> int
type const = CPrimitives.const =
  1. | Arraymaxlength
val const_to_yojson : const -> Yojson.Safe.t
val const_of_sexp : Sexplib0.Sexp.t -> const
val sexp_of_const : const -> Sexplib0.Sexp.t
val hash_fold_const : Base.Hash.state -> const -> Base.Hash.state
val hash_const : const -> Base.Hash.hash_value
type 'a prim_type = 'a CPrimitives.prim_type =
  1. | PT_int63 : unit prim_type
  2. | PT_float64 : unit prim_type
  3. | PT_array : (Univ.Instance.t * ind_or_type) prim_type
and 'a prim_ind = 'a CPrimitives.prim_ind =
  1. | PIT_bool : unit prim_ind
  2. | PIT_carry : ind_or_type prim_ind
  3. | PIT_pair : (ind_or_type * ind_or_type) prim_ind
  4. | PIT_cmp : unit prim_ind
  5. | PIT_f_cmp : unit prim_ind
  6. | PIT_f_class : unit prim_ind
and ind_or_type = CPrimitives.ind_or_type =
  1. | PITT_ind : 'a prim_ind * 'a -> ind_or_type
  2. | PITT_type : 'a prim_type * 'a -> ind_or_type
  3. | PITT_param : int -> ind_or_type
val sexp_of_prim_type : 'a. ('a -> Sexplib0.Sexp.t) -> 'a prim_type -> Sexplib0.Sexp.t
val sexp_of_prim_ind : 'a. ('a -> Sexplib0.Sexp.t) -> 'a prim_ind -> Sexplib0.Sexp.t
val sexp_of_ind_or_type : ind_or_type -> Sexplib0.Sexp.t
val prim_type_of_sexp : Sexplib.Sexp.t -> unit prim_type
type op_or_type = CPrimitives.op_or_type =
  1. | OT_op of t
  2. | OT_type : 'a prim_type -> op_or_type
  3. | OT_const of const
val sexp_of_op_or_type : op_or_type -> Sexplib0.Sexp.t
val compare_op_or_type : op_or_type -> op_or_type -> int
val op_or_type_of_sexp : Sexplib.Sexp.t -> op_or_type
val op_or_type_to_yojson : 'a -> 'b
val op_or_type_of_yojson : 'a -> 'b