Packages

object TextTree

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

Type Members

  1. trait InterpolationArg[+T] extends AnyRef

    Typeclass for values that can be interpolated into TextTree interpolators

  2. trait LowPrioInterpolationArg_1 extends LowPrioInterpolationArg_2
    Attributes
    protected
  3. trait LowPrioInterpolationArg_2 extends AnyRef
    Attributes
    protected
  4. case class Node[+T](chunks: NEList[TextTree[T]]) extends TextTree[T] with Product with Serializable

    A composite node containing multiple child trees

  5. implicit final class Quote extends AnyVal

    String interpolators for building TextTrees

  6. case class Shift[+T](nested: TextTree[T], shift: Int) extends TextTree[T] with Product with Serializable

    Indents nested tree by specified number of spaces on each line

  7. case class StringNode(value: String) extends TextTree[Nothing] with Product with Serializable

    Plain text with escape sequences (like \n) processed during rendering

  8. implicit final class TextTreeGenericOps[T] extends AnyRef

    Core operations for TextTree

  9. implicit class TextTreeSeqOps[T] extends AnyRef

    Operations for sequences of TextTrees

  10. case class Trim[+T](nested: TextTree[T]) extends TextTree[T] with Product with Serializable

    Trims whitespace from the beginning and end of nested tree

  11. case class ValueNode[+T](value: T) extends TextTree[T] with Product with Serializable

    A typed value that will be rendered using a provided function

  12. case class VerbatimNode(value: String) extends TextTree[Nothing] with Product with Serializable

    Plain text with escape sequences kept literal (raw strings)

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  6. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  7. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  8. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  9. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  10. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  11. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  12. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  13. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  14. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  15. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  16. def text[T](value: String): TextTree[T]

    Create a text node with escape sequence processing

  17. def toString(): String
    Definition Classes
    AnyRef → Any
  18. def value[T](value: T): TextTree[T]

    Create a typed value node

  19. def verbatim[T](value: String): TextTree[T]

    Create a verbatim text node without escape sequence processing

  20. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  21. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  22. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  23. object InterpolationArg extends LowPrioInterpolationArg_1
  24. object style

    Language-specific rendering styles

Inherited from AnyRef

Inherited from Any

Ungrouped