include Ecaml__.Defun_intf.Defun
include Ecaml__.Defun_intf.Open_on_rhs with type a t := a t
val return : 'a ‑> 'a t
val required : Symbol.t ‑> 'a Value.Type.t ‑> 'a t
val optional : Symbol.t ‑> 'a Value.Type.t ‑> 'a option t
val rest : Symbol.t ‑> 'a Value.Type.t ‑> 'a list t
val optional_with_default : Symbol.t ‑> 'a ‑> 'a Value.Type.t ‑> 'a t
module Let_syntax : sig ... end
val defun : ?docstring:string ‑> ?interactive:string ‑> Core_kernel.Source_code_position.t ‑> 'a Value.Type.t ‑> Symbol.t ‑> 'a t ‑> unit
val defun_nullary : ?docstring:string ‑> ?interactive:string ‑> Core_kernel.Source_code_position.t ‑> 'a Value.Type.t ‑> Symbol.t ‑> (unit ‑> 'a) ‑> unit
val defun_nullary_nil : ?docstring:string ‑> ?interactive:string ‑> Core_kernel.Source_code_position.t ‑> Symbol.t ‑> (unit ‑> unit) ‑> unit
val lambda : ?docstring:string ‑> ?interactive:string ‑> Core_kernel.Source_code_position.t ‑> 'a Value.Type.t ‑> 'a t ‑> Function.t
val lambda_nullary : ?docstring:string ‑> ?interactive:string ‑> Core_kernel.Source_code_position.t ‑> 'a Value.Type.t ‑> (unit ‑> 'a) ‑> Function.t
val lambda_nullary_nil : ?docstring:string ‑> ?interactive:string ‑> Core_kernel.Source_code_position.t ‑> (unit ‑> unit) ‑> Function.t