package flow_parser

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type (!'M, !'T) t = 'M * ('M, 'T) t'
and (!'M, !'T) name =
  1. | Identifier of ('M, 'T) Identifier.t
  2. | NamespacedName of ('M, 'T) NamespacedName.t
and (!'M, !'T) value =
  1. | Literal of 'T * 'M Literal.t
  2. | ExpressionContainer of 'T * ('M, 'T) ExpressionContainer.t
and (!'M, !'T) t' = {
  1. name : ('M, 'T) name;
  2. value : ('M, 'T) value option;
}