@param c Collection to be added
( Collection<? extends E> c )
| 115 | |
| 116 | /** @param c Collection to be added */ |
| 117 | public boolean addAll( Collection<? extends E> c ) { |
| 118 | if( c==null ) return false; |
| 119 | for( E e : c ) add(e); |
| 120 | return true; |
| 121 | } |
| 122 | public Ary<E> addAll( Iterable<? extends E> it ) { for( E e : it ) add(e); return this; } |
| 123 | |
| 124 | /** @param es Array to be added */ |