@param c Collection to be added
( Collection<? extends E> c )
| 131 | |
| 132 | /** @param c Collection to be added */ |
| 133 | public boolean addAll( Collection<? extends E> c ) { |
| 134 | if( c==null ) return false; |
| 135 | for( E e : c ) add(e); |
| 136 | return true; |
| 137 | } |
| 138 | public Ary<E> addAll( Iterable<? extends E> it ) { for( E e : it ) add(e); return this; } |
| 139 | |
| 140 | /** @param es Array to be added */ |