mirror of
https://github.com/c-cube/sidekick.git
synced 2025-12-05 19:00:33 -05:00
10 lines
169 B
OCaml
10 lines
169 B
OCaml
(** Bound variable *)
|
|
|
|
open Types_
|
|
|
|
type t = bvar = { bv_idx: int; bv_ty: term }
|
|
|
|
include EQ_HASH_PRINT with type t := t
|
|
|
|
val make : int -> term -> t
|
|
val ty : t -> term
|