package sexp_pretty

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type t =
  1. | Sexp of sexp * Base.string Base.list
  2. | Comment of comment
and comment =
  1. | Line_comment of Base.string
  2. | Block_comment of Base.int * Base.string Base.list
  3. | Sexp_comment of comment Base.list * sexp
and sexp =
  1. | Atom of Base.string
  2. | List of t Base.list
val of_sexp_or_comment : Config.t -> Sexplib.Sexp.With_layout.t_or_comment -> t