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