package melange

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

Module Pattern.ObjectSource

Sourcemodule Property : sig ... end
Sourcetype ('M, 'T) property =
  1. | Property of ('M, 'T) Property.t
  2. | RestElement of ('M, 'T) RestElement.t
Sourceand ('M, 'T) t = {
  1. properties : ('M, 'T) property list;
  2. annot : ('M, 'T) Type.annotation_or_hint;
  3. 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