MCPcopy Create free account
hub / github.com/SeaOfNodes/Simple / addAll

Method addAll

chapter21/src/main/java/com/seaofnodes/simple/Ary.java:148–152  ·  view source on GitHub ↗

@param c Collection to be added

( Collection<? extends E> c )

Source from the content-addressed store, hash-verified

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 */

Callers 2

splitEmptyMaskByUseMethod · 0.95
$cFunction · 0.45

Calls 1

addMethod · 0.95

Tested by

no test coverage detected