Packages

sealed trait Doc extends AnyRef

A pretty-printed document that can then be rendered to a certain witdh.

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

Abstract Value Members

  1. abstract def startsWith(s: String): Boolean

Concrete Value Members

  1. def ++(that: Doc): Doc
  2. def render[State](width: Int, outs: (State, String) => State, initial: State): State
  3. def render(width: Int, outs: (String) => Unit): Unit
  4. def render(width: Int): String