The underlying collection type with unknown element type
A generic implementation of the CanBuildFrom
trait, which forwards
all calls to apply(from)
to the genericBuilder
method of
collection from
, and which forwards all calls of apply()
to the
newBuilder
method of this factory.
Creates a list buffer with the specified elements .
Concatenates all argument collections into a single list buffer .
An empty collection of type ListBuffer[A]
Produces a five-dimensional list buffer containing the results of some element computation a number of times .
Produces a four-dimensional list buffer containing the results of some element computation a number of times .
Produces a three-dimensional list buffer containing the results of some element computation a number of times .
Produces a two-dimensional list buffer containing the results of some element computation a number of times .
Produces a list buffer containing the results of some element computation a number of times .
Produces a list buffer containing repeated applications of a function to a start value .
The default builder for ListBuffer
objects.
Produces a list buffer containing equally spaced values in some integer interval .
Produces a list buffer containing a sequence of increasing of integers .
Produces a five-dimensional list buffer containing values of a given function over ranges of integer values starting from 0 .
Produces a four-dimensional list buffer containing values of a given function over ranges of integer values starting from 0 .
Produces a three-dimensional list buffer containing values of a given function over ranges of integer values starting from 0 .
Produces a two-dimensional list buffer containing values of a given function over ranges of integer values starting from 0 .
Produces a list buffer containing values of a given function over a range of integer values starting from 0 .
This method is called in a pattern match { case Seq( .
This object provides a set of operations to create
ListBuffer
values.version
2 . 8
authors:
Martin Odersky