Module Codegen_llvm.FuncMap

module K : sig ... end
type status =
  1. | User
  2. | Lib
type t
module M : sig ... end
val empty : unit -> t
val bind : t -> string -> (Llvm.llvalue * Llvm.lltype * status) -> t
val find : t -> string -> (Llvm.llvalue * Llvm.lltype * status) option
val find_exn : t -> string -> Llvm.llvalue * Llvm.lltype * status
val keys : 'a M.t -> (string * 'a) list
val print_fmap : t -> unit