|
Scala Library
|
|
scala/collection/TraversableView.scala]
class
NoBuilder[A]
extends Builder[A, Nothing]| Method Summary | |
def
|
+=
(elem : A) : NoBuilder[A]
Adds a single element to the builder.
|
def
|
clear
: Unit
Clear the contents of this builder
|
def
|
elements : Iterator[A] |
def
|
iterator : Iterator[A] |
def
|
result
: Nothing
Returns collection resulting from this builder. The buffer's contents
are undefined afterwards.
|
| Methods inherited from Builder | |
| sizeHint, mapResult |
| Methods inherited from Growable | |
| +=, ++=, ++= |
| 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 |
elem - The element to be added
def
elements : Iterator[A]
def
result : Nothing
def
clear : Unit
|
Scala Library
|
|