Module Ecaml__.Funcall
val return : 'a Ecaml__.Import.Value.Type.t -> 'a tval nil : unit Ecaml__.Import.Value.Type.tval nullary : unit Ecaml__.Import.Value.Type.tval (<:) : Ecaml.Symbol.t -> 'a t -> 'aQ.foo <: ...types an Elisp function, like howfoo :> ttypes an OCaml value.
val (@->) : 'a Ecaml__.Import.Value.Type.t -> 'b t -> ('a -> 'b) t
include Ecaml__.Import.Value.Type.S
val create : Core_kernel.Sexp.t -> ('a -> Core_kernel.Sexp.t) -> (value -> 'a) -> ('a -> value) -> 'a tval with_of_value_exn : 'a t -> (value -> 'a) -> 'a tval to_sexp : 'a t -> 'a -> Core_kernel.Sexp.tval bool : bool tval float : float tval ignored : unit tval int : int tval string : string tval string_cached : string tstring_cachedis likestring, except it usesof_utf8_bytes_cached.
val unit : unit tval value : value tval list : 'a t -> 'a list tval vector : 'a t -> 'a array tval option : ?wrapped:bool -> 'a t -> 'a option tThe representation of an option type's values in Elisp can be "wrapped" or "unwrapped". In either case,
Noneis represented asnil. The unrwapped representation ofSome vis the representation ofv, whereas the wrapped representation iscons v nil. Wrapping is necessary ifnilis a representation of some valuev_nil, in order to distinguish between the representation ofNoneandSome v_nil.
val alist : 'a t -> 'b t -> ('a * 'b) list tval tuple : 'a t -> 'b t -> ('a * 'b) tRepresent a tuple (a,b) as the elisp cons cell (a . b)
val sexpable : (module Core_kernel.Sexpable with type t = 'a) -> name:Core_kernel.Sexp.t -> 'a tEmbed a sexpable ocaml type, so we can save values of the type in emacs, e.g. as buffer local variables
val caml_embed : 'a Core_kernel.Type_equal.Id.t -> 'a tEmbed values of type
'a. Note that unlike other functions above, the values are not transformed, so this can be used to preserve state in emacs. More precisely, this following returnstrue:let var = Var.create (Value.Type.caml_embed type_id) in Current_buffer.set_value var v; phys_equal v (Current_buffer.value_exn var)
val path_list : string list tA list of directories. Each element is a string (directory name) or nil (try default directory). nil values are converted to ".", which has the same meaning.
module Private : sig ... end