scala.collection.mutable.ArrayBuilder
adds all elements produced by a TraversableOnce to this growable collection.
Adds a single element to the builder.
adds two or more elements to this growable collection.
Clears the contents of this builder.
This method is used to compare the receiver object (this
) with the argument object (arg0
) for equivalence.
Creates a new builder by applying a transformation function to the results of this builder.
Produces a collection from the added elements.
Gives a hint how many elements are expected to be added
when the next result
is called.
Gives a hint that one expects the result
of this builder
to have the same size as the given collection, plus some delta.
Gives a hint how many elements are expected to be added
when the next result
is called, together with an upper bound
given by the size of some other collection.
Returns a string representation of the object.
A class for array builders for arrays of
byte
s.