package elpi

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

Module Ast.TypeSource

Sourcetype t_ =
  1. | Any
  2. | Con of Name.t
  3. | App of Name.t * t * t list
  4. | Arr of t * t
Sourceand t = {
  1. it : t_;
  2. loc : Loc.t;
}
Sourceval pp : Format.formatter -> t -> unit
Sourceval show : t -> string