package coq

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type t =
  1. | Int63head0
  2. | Int63tail0
  3. | Int63add
  4. | Int63sub
  5. | Int63mul
  6. | Int63div
  7. | Int63mod
  8. | Int63lsr
  9. | Int63lsl
  10. | Int63land
  11. | Int63lor
  12. | Int63lxor
  13. | Int63addc
  14. | Int63subc
  15. | Int63addCarryC
  16. | Int63subCarryC
  17. | Int63mulc
  18. | Int63diveucl
  19. | Int63div21
  20. | Int63addMulDiv
  21. | Int63eq
  22. | Int63lt
  23. | Int63le
  24. | Int63compare
  25. | Float64opp
  26. | Float64abs
  27. | Float64eq
  28. | Float64lt
  29. | Float64le
  30. | Float64compare
  31. | Float64classify
  32. | Float64add
  33. | Float64sub
  34. | Float64mul
  35. | Float64div
  36. | Float64sqrt
  37. | Float64ofInt63
  38. | Float64normfr_mantissa
  39. | Float64frshiftexp
  40. | Float64ldshiftexp
  41. | Float64next_up
  42. | Float64next_down
  43. | Arraymake
  44. | Arrayget
  45. | Arraydefault
  46. | Arrayset
  47. | Arraycopy
  48. | Arraylength
val parse : string -> t
val equal : t -> t -> bool
type const =
  1. | Arraymaxlength
type arg_kind =
  1. | Kparam
  2. | Kwhnf
  3. | Karg
type args_red = arg_kind list
val hash : t -> int
val to_string : t -> string
val arity : t -> int
val nparams : t -> int
val kind : t -> args_red
type !'a 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 =
  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 =
  1. | PITT_ind : 'a prim_ind * 'a -> ind_or_type
  2. | PITT_type : 'a0 prim_type * 'a0 -> ind_or_type
  3. | PITT_param : int -> ind_or_type
val typ_univs : 'a prim_type -> Univ.AUContext.t
type prim_type_ex =
  1. | PTE : 'a prim_type -> prim_type_ex
type prim_ind_ex =
  1. | PIE : 'a prim_ind -> prim_ind_ex
val prim_type_of_string : string -> prim_type_ex
val prim_type_to_string : 'a prim_type -> string
type op_or_type =
  1. | OT_op of t
  2. | OT_type : 'a prim_type -> op_or_type
  3. | OT_const of const
val op_or_type_univs : op_or_type -> Univ.AUContext.t
val prim_ind_to_string : 'a prim_ind -> string
val op_or_type_of_string : string -> op_or_type
val op_or_type_to_string : op_or_type -> string
val parse_op_or_type : ?loc:Loc.t -> string -> op_or_type
val univs : t -> Univ.AUContext.t
val body_of_prim_const : const -> Constr.t