sealed trait Doc extends AnyRef

Source
Doc.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Doc
  2. AnyRef
  3. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. def +(other: String): String
    Implicit
    This member is added by an implicit conversion from Doc to any2stringadd[Doc] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ->[B](y: B): (Doc, B)
    Implicit
    This member is added by an implicit conversion from Doc to ArrowAssoc[Doc] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  5. def <+>(that: Doc): Doc

    Concatenate two documents with a space between them.

  6. def </>(that: Doc): Doc

    Concatenate two documents with a line break between them.

  7. def <>(that: Doc): Doc

    Concatenate two documents.

  8. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  9. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  10. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  11. def ensuring(cond: (Doc) ⇒ Boolean, msg: ⇒ Any): Doc
    Implicit
    This member is added by an implicit conversion from Doc to Ensuring[Doc] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  12. def ensuring(cond: (Doc) ⇒ Boolean): Doc
    Implicit
    This member is added by an implicit conversion from Doc to Ensuring[Doc] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  13. def ensuring(cond: Boolean, msg: ⇒ Any): Doc
    Implicit
    This member is added by an implicit conversion from Doc to Ensuring[Doc] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  14. def ensuring(cond: Boolean): Doc
    Implicit
    This member is added by an implicit conversion from Doc to Ensuring[Doc] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  15. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  16. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  17. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  18. def firstChar: Option[Char]
  19. def formatted(fmtstr: String): String
    Implicit
    This member is added by an implicit conversion from Doc to StringFormat[Doc] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  20. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  21. def group: Doc

    Group a document such that it is displayed on one line if possible.

  22. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  23. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  24. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  25. def nest(i: Int): Doc

    Nest a document to i spaces of indentation.

    Nest a document to i spaces of indentation.

    i

    Then number of spaces to indent by.

  26. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  27. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  28. def render(lineWidth: Int): String

    Turn the document into a string.

    Turn the document into a string.

    lineWidth

    No line in the result string will exceed this length, unless it is unavoidable.

  29. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  30. def toString(): String
    Definition Classes
    Doc → AnyRef → Any
  31. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  32. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  33. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  34. def writeToFile(file: Path): Unit

    Writes the document to the specified file, replacing the current contents.

  35. def [B](y: B): (Doc, B)
    Implicit
    This member is added by an implicit conversion from Doc to ArrowAssoc[Doc] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion any2stringadd from Doc to any2stringadd[Doc]

Inherited by implicit conversion StringFormat from Doc to StringFormat[Doc]

Inherited by implicit conversion Ensuring from Doc to Ensuring[Doc]

Inherited by implicit conversion ArrowAssoc from Doc to ArrowAssoc[Doc]

Ungrouped