Packages

case class TreePrinter(name: String = "", prefix: String = "", firstPrefix: String = null, narrow: (Dumpable) => Dumpable = identity, mark: (Dumpable) => Boolean = _ => false) extends Product with Serializable

Create a readable printout of a tree.

Source
TreePrinter.scala
Linear Supertypes
Serializable, Product, Equals, AnyRef, Any
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. TreePrinter
  2. Serializable
  3. Product
  4. Equals
  5. AnyRef
  6. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new TreePrinter(name: String = "", prefix: String = "", firstPrefix: String = null, narrow: (Dumpable) => Dumpable = identity, mark: (Dumpable) => Boolean = _ => false)

Value Members

  1. def findMarkedTop(n: Dumpable): Dumpable
  2. val firstPrefix: String
  3. def get(n: Dumpable): String
  4. val mark: (Dumpable) => Boolean
  5. val name: String
  6. val narrow: (Dumpable) => Dumpable
  7. val prefix: String
  8. def print(n: Dumpable, out: PrintWriter = new PrintWriter(new OutputStreamWriter(System.out))): Unit
  9. def productElementNames: Iterator[String]
    Definition Classes
    Product