scala.collection.generic.TraversableView

class NoBuilder

[source: scala/collection/generic/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
def +=(elem : A) : NoBuilder[A]
Adds a single element to the builder.
Parameters
elem - The element to be added
Overrides
Builder.+=

def iterator : Iterator[A]

@deprecated("use `iterator' instead")

def elements : Iterator[A]

def result : Nothing
Returns collection resulting from this builder. The buffer's contents are undefined afterwards.
Overrides
Builder.result

def clear : Unit
Clear the contents of this builder
Overrides
Builder.clear