package ecaml

  1. Overview
  2. Docs
Library for writing Emacs plugin in OCaml

Install

Dune Dependency

Authors

Maintainers

Sources

ecaml-v0.13.0.tar.gz
sha256=20de8c606f4d0aea48c9353d1202c388fdd5d9faecb22799e46b5e2f2f8a4458
md5=4f58053a70cb5be73c8d98abacaab3a9

doc/ecaml.ecaml_value/Ecaml_value/Caml_embed/index.html

Module Ecaml_value.Caml_embed

type t
val lookup_by_id_exn : Ecaml_value__.Caml_embedded_id.t -> 'a Core_kernel.Type_equal.Id.t -> 'a
val initialize : unit
val debug_sexp : unit -> Core_kernel.Sexp.t
val create_type : 'a Core_kernel.Type_equal.Id.t -> 'a Value.Type.t

Embed values of an arbitrary OCaml type 'a in an Elisp value. The values are not transformed, so this can be used to preserve state in Emacs. More precisely, the following returns true:

  let var = Var.create symbol (Caml_embed.create_type type_id) in
  Current_buffer.set_value var v;
  phys_equal v (Current_buffer.value_exn var)
OCaml

Innovation. Community. Security.