ammonite

pprint

package pprint

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. pprint
  2. AnyRef
  3. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Type Members

  1. case class Config(maxWidth: Int = 100, depth: Int = 0, indent: Int = 2, literalColor: String = null, prefixColor: String = null, renames: Map[String, String] = Config.defaultRenames) extends GenConfig[Config] with Product with Serializable

    Configuration options to control how prettyprinting occurs, passed recursively into each prettyprinting callsite.

  2. trait GenConfig[T <: GenConfig[T]] extends AnyRef

    Helpers to help inject behavior into the generated code without having any circular dependencies

  3. trait GenUtils extends AnyRef

    Helpers to help inject behavior into the generated code without having any circular dependencies

  4. case class PPrint[A](a: PPrinter[A], cfg: Config) extends Product with Serializable

    A typeclass necessary to prettyprint something.

  5. trait PPrinter[-A] extends AnyRef

    A typeclass you define to prettyprint values of type A

  6. trait PPrinterGen extends GenUtils

Value Members

  1. object Config extends Serializable

  2. object Internals

  3. object PPrint extends LowPriPPrint with Serializable

  4. object PPrinter

  5. object Unpacker extends PPrinterGen

Inherited from AnyRef

Inherited from Any

Ungrouped