package ecaml

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type

Automatic_migration supports migrating from one symbol-naming convention to another. Use Automatic_migration.add to add a function that maps names from the old convention to the new. Once you've done that, the following functions will automatically migrate their symbol argument, and and an obsolete alias pointing from the old name to the new.

  • defcustom
  • defun
  • define_minor_mode
  • defvar
module New : sig ... end
val add : (old:t -> New.t option) -> unit
val migrate : old:t -> New.t option