aboutsummaryrefslogtreecommitdiffhomepage
path: root/kernel/context.mli
diff options
context:
space:
mode:
authorGravatar Matej Kosik <m4tej.kosik@gmail.com>2016-08-24 15:30:58 +0200
committerGravatar Matej Kosik <m4tej.kosik@gmail.com>2016-08-24 15:30:58 +0200
commit50f864e52d952ae59050d2bac1c05788b6393f18 (patch)
tree42ab532b4413958a114425b3dd3554a853eb1aee /kernel/context.mli
parent8e38b0e46f9628bcface1e5dad39c876f1f3f318 (diff)
Adding "Context.Named.Declaration.to_rel" function
Diffstat (limited to 'kernel/context.mli')
-rw-r--r--kernel/context.mli7
1 files changed, 6 insertions, 1 deletions
diff --git a/kernel/context.mli b/kernel/context.mli
index 27d0f2c1b..ecc3987a5 100644
--- a/kernel/context.mli
+++ b/kernel/context.mli
@@ -195,8 +195,13 @@ sig
val to_tuple : t -> Id.t * Constr.t option * Constr.t
val of_tuple : Id.t * Constr.t option * Constr.t -> t
- (** Convert [Rel.Declaration.t] value to the corresponding [Named.Declaration.t] value. *)
+ (** Convert [Rel.Declaration.t] value to the corresponding [Named.Declaration.t] value.
+ The function provided as the first parameter determines how to translate "names" to "ids". *)
val of_rel : (Name.t -> Id.t) -> Rel.Declaration.t -> t
+
+ (** Convert [Named.Declaration.t] value to the corresponding [Rel.Declaration.t] value. *)
+ (* TODO: Move this function to [Rel.Declaration] module and rename it to [of_named]. *)
+ val to_rel : t -> Rel.Declaration.t
end
(** Rel-context is represented as a list of declarations.