aboutsummaryrefslogtreecommitdiff
path: root/API
diff options
context:
space:
mode:
authorEmilio Jesus Gallego Arias2017-11-06 23:27:09 +0100
committerEmilio Jesus Gallego Arias2017-11-06 23:46:52 +0100
commit03e21974a3e971a294533bffb81877dc1bd270b6 (patch)
tree1b37339378f6bc93288b61f707efb6b08f992dc5 /API
parentf3abbc55ef160d1a65d4467bfe9b25b30b965a46 (diff)
[api] Move structures deprecated in the API to the core.
We do up to `Term` which is the main bulk of the changes.
Diffstat (limited to 'API')
-rw-r--r--API/API.mli11
1 files changed, 11 insertions, 0 deletions
diff --git a/API/API.mli b/API/API.mli
index ccb71179dd..065caeac32 100644
--- a/API/API.mli
+++ b/API/API.mli
@@ -553,6 +553,17 @@ sig
| CoFix of ('constr, 'types) pcofixpoint
| Proj of Projection.t * 'constr
+ val kind : constr -> (constr, types, Sorts.t, Univ.Instance.t) kind_of_term
+ val of_kind : (constr, types, Sorts.t, Univ.Instance.t) kind_of_term -> constr
+
+val map_with_binders :
+ ('a -> 'a) -> ('a -> constr -> constr) -> 'a -> constr -> constr
+val map : (constr -> constr) -> constr -> constr
+
+val fold : ('a -> constr -> 'a) -> 'a -> constr -> 'a
+val iter : (constr -> unit) -> constr -> unit
+val compare_head : (constr -> constr -> bool) -> constr -> constr -> bool
+
val equal : t -> t -> bool
val eq_constr_nounivs : t -> t -> bool
val compare : t -> t -> int