package melange

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type bound_kind =
  1. | Colon
  2. | Extends
type ('M, 'T) t = 'M * ('M, 'T) t'
and ('M, 'T) t' = {
  1. name : ('M, 'M) Identifier.t;
  2. bound : ('M, 'T) annotation_or_hint;
  3. bound_kind : bound_kind;
  4. variance : 'M Variance.t option;
  5. default : ('M, 'T) t option;
}