ArrayList.add

Appends the specified element to the end of this list.

@param e element to be appended to this list @return <tt>true</tt> (as specified by {@link Collection#add})

  1. bool add(E e)
    class ArrayList(E)
    override
    bool
    add
    (
    E e
    )
  2. void add(int index, E element)
  3. alias add = AbstractList!(E).add

Meta