Packages

trait Growable[-A] extends Clearable

Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Growable
  2. Clearable
  3. AnyRef
  4. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def +=(elem: A): Growable.this.type

    adds a single element to this growable collection.

    adds a single element to this growable collection.

    elem

    the element to add.

    returns

    the growable collection itself

  2. abstract def clear(): Unit

    Clears the growable collection's contents.

    Clears the growable collection's contents. After this operation, the growable collection is empty.

    Definition Classes
    GrowableClearable

Concrete Value Members

  1. def ++=(xs: TraversableOnce[A]): Growable.this.type

    adds all elements produced by a TraversableOnce to this growable collection.

    adds all elements produced by a TraversableOnce to this growable collection.

    xs

    the TraversableOnce producing the elements to add.

    returns

    the growable collection itself.

  2. def +=(elem1: A, elem2: A, elems: A*): Growable.this.type

    adds two or more elements to this growable collection.

    adds two or more elements to this growable collection.

    elem1

    the first element to add.

    elem2

    the second element to add.

    elems

    the remaining elements to add.

    returns

    the growable collection itself