package dolmen

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

Pretty printing annotations

This module defines types to specify pretty printing annotations (such as associtativity, infix notations, etc...).

type name =
  1. | Exact of string
  2. | Renamed of string
type pos =
  1. | Infix
  2. | Prefix
type assoc =
  1. | Left
  2. | Right