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

Method addAll

chapter24/src/main/java/com/seaofnodes/simple/util/Ary.java:149–153  ·  view source on GitHub ↗

@param c Collection to be added

( Collection<? extends E> c )

Source from the content-addressed store, hash-verified

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

Callers 15

gccMethod · 0.95
recurCloseMethod · 0.95
splitEmptyMaskByUseMethod · 0.95
parseFunctionBodyMethod · 0.45
parseStructMethod · 0.45
xmeetMethod · 0.45
_uselessMethod · 0.45
idealizeMethod · 0.45
NodeMethod · 0.45
subsumeMethod · 0.45
setTypeMethod · 0.45
moveDepsToWorklistMethod · 0.45

Calls 1

addMethod · 0.95

Tested by 1

gccMethod · 0.76