@param c Collection to be added
( Collection<? extends E> c )
| 147 | |
| 148 | /** @param c Collection to be added */ |
| 149 | public boolean addAll( Collection<? extends E> c ) { |
| 150 | if( c==null ) return false; |
| 151 | for( E e : c ) add(e); |
| 152 | return true; |
| 153 | } |
| 154 | public Ary<E> addAll( Iterable<? extends E> it ) { for( E e : it ) add(e); return this; } |
| 155 | |
| 156 | /** @param es Array to be added */ |