Scala Library
|
|
scala/text/Document.scala
]
abstract
class
Document
extends
AnyRefMethod Summary | |
def
|
:/: (hd : Document) : Document |
def
|
:/: (hd : java.lang.String) : Document |
def
|
:: (hd : Document) : Document |
def
|
:: (hd : java.lang.String) : Document |
def
|
format
(width : Int, writer : java.io.Writer) : Unit
Format this document on
writer and try to set line
breaks so that the result fits in width columns. |
Methods inherited from AnyRef | |
getClass, hashCode, equals, clone, toString, notify, notifyAll, wait, wait, wait, finalize, ==, !=, eq, ne, synchronized |
Methods inherited from Any | |
==, !=, isInstanceOf, asInstanceOf |
Method Details |
def
::(hd : java.lang.String) : Document
def
:/:(hd : java.lang.String) : Document
def
format(width : Int, writer : java.io.Writer) : Unit
writer
and try to set line
breaks so that the result fits in width
columns.width -
...writer -
...
Scala Library
|
|