1
0
Fork 0
This repository has been archived on 2024-05-03. You can view files and clone it, but cannot push or open issues or pull requests.
unification-pfa/lib/typeSubstitution.mli

10 lines
259 B
OCaml
Raw Normal View History

2024-03-11 09:31:56 +01:00
type t = Type.t Map.Make(Identifier).t
val apply : t -> Type.t -> Type.t
val compose : t -> t -> t
val empty : t
2024-04-11 11:18:14 +02:00
val singleton : Identifier.t -> Type.t -> t
2024-04-13 15:51:57 +02:00
val find : Identifier.t -> t -> Type.t option
2024-04-13 20:15:39 +02:00
val to_string : t -> string
2024-04-30 13:36:12 +02:00
val equal : t -> t -> bool