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

Method addAll

chapter19/src/main/java/com/seaofnodes/simple/Ary.java:133–137  ·  view source on GitHub ↗

@param c Collection to be added

( Collection<? extends E> c )

Source from the content-addressed store, hash-verified

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

Callers 10

xmeetMethod · 0.45
_uselessMethod · 0.45
idealizeMethod · 0.45
NodeMethod · 0.45
subsumeMethod · 0.45
setTypeMethod · 0.45
moveDepsToWorklistMethod · 0.45
dupMethod · 0.45
deadPathMethod · 0.45
$cFunction · 0.45

Calls 1

addMethod · 0.95

Tested by

no test coverage detected