Packages

object TreeBrowsers

Source
TreeBrowsers.scala
Linear Supertypes
Content Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. TreeBrowsers
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Type Members

  1. case class DocCons(hd: Document, tl: Document) extends Document with Product with Serializable
  2. case class DocGroup(doc: Document) extends Document with Product with Serializable
  3. case class DocNest(indent: Int, doc: Document) extends Document with Product with Serializable
  4. case class DocText(txt: String) extends Document with Product with Serializable
  5. sealed abstract class Document extends AnyRef

    A basic pretty-printing library, based on Lindig's strict version of Wadler's adaptation of Hughes' pretty-printer.

Value Members

  1. case object DocBreak extends Document with Product with Serializable
  2. case object DocNil extends Document with Product with Serializable
  3. object Document