package melange

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

Module Expression.ObjectSource

Sourcemodule Property : sig ... end
Sourcemodule SpreadProperty : sig ... end
Sourcetype ('M, 'T) property =
  1. | Property of ('M, 'T) Property.t
  2. | SpreadProperty of ('M, 'T) SpreadProperty.t
Sourceand ('M, 'T) t = {
  1. properties : ('M, 'T) property list;
  2. comments : ('M, 'M Comment.t list) Syntax.t option;
}
Sourceval pp_property : (Format.formatter -> 'M -> unit) -> (Format.formatter -> 'T -> unit) -> Format.formatter -> ('M, 'T) property -> unit
Sourceval show_property : (Format.formatter -> 'M -> unit) -> (Format.formatter -> 'T -> unit) -> ('M, 'T) property -> string
Sourceval pp : (Format.formatter -> 'M -> unit) -> (Format.formatter -> 'T -> unit) -> Format.formatter -> ('M, 'T) t -> unit
Sourceval show : (Format.formatter -> 'M -> unit) -> (Format.formatter -> 'T -> unit) -> ('M, 'T) t -> string