scala.collection.mutable.ArrayBuilder

ofFloat

class ofFloat extends ArrayBuilder[Float]

Inherits

  1. ArrayBuilder
  2. Builder
  3. Growable
  4. AnyRef
  5. Any

Value Members

  1. def ++=(xs: Traversable[Float]): ofFloat

    adds all elements contained in a traversable collection to this growable collection

  2. def ++=(iter: Iterator[Float]): Growable[Float]

    adds all elements produced by an iterator to this growable collection

  3. def +=(elem: Float): ofFloat

    Adds a single element to the builder

  4. def +=(elem1: Float, elem2: Float, elems: Float*): Growable[Float]

    adds two or more elements to this growable collection

  5. def clear(): Unit

    Clears the contents of this builder

  6. def equals(other: Any): Boolean

    This method is used to compare the receiver object (this) with the argument object (arg0) for equivalence

  7. def hashCode(): Int

    Returns a hash code value for the object

  8. def mapResult[NewTo](f: (Array[Float]) ⇒ NewTo): Builder[Float, NewTo]

    Creates a new builder by applying a transformation function to the results of this builder

  9. def result(): Array[Float]

    Produces a collection from the added elements

  10. def sizeHint(size: Int): Unit

    Gives a hint how many elements are expected to be added when the next result is called

  11. def toString(): String

    Returns a string representation of the object

Instance constructors

  1. new ofFloat()