_core
Non buffer methods
This is the full list of Doc methods, with the exception of ones inherited from AnyRef.G.Buffer and scala.Product
- Source
- _core.scala
Def
Add name/value at position
Add name/value at position
Adds name and value at given position
- Source
- _core.scala
Instance id
Instance id
Id used to identify the instance
It usually includes class name and hash code
- Source
- _core.scala
Generates tag description
Generates tag description
Tag contains a single line Doc representation
- Source
- _core.scala
Generates text description
Generates text description
Text contains multi-line Doc representation
- Source
- _core.scala
Update value by name
Update value by name
"update" can be called with simplified notation
val d: Doc = Doc("test") += ("foo", "bar1")
d("foo") = "bar2"
- Source
- _core.scala
Update value by position
Update value by position
"update" can be called with simplified notation
val d: Doc = Doc("test") += ("foo", "bar1")
d(0) = "bar2"
- Source
- _core.scala