package melange

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type ('M, 'T) t = {
  1. init : ('M, 'T) init option;
  2. test : ('M, 'T) Expression.t option;
  3. update : ('M, 'T) Expression.t option;
  4. body : ('M, 'T) Statement.t;
  5. comments : ('M, unit) Syntax.t option;
}
and ('M, 'T) init =
  1. | InitDeclaration of 'M * ('M, 'T) VariableDeclaration.t
  2. | InitExpression of ('M, 'T) Expression.t