MCPcopy Create free account
hub / github.com/LFYSec/MScan / add

Method add

src/test/resources/sideeffect/LinkedList.java:35–37  ·  view source on GitHub ↗
(Object e)

Source from the content-addressed store, hash-verified

33class List {
34 Cell head=null;
35 void add(Object e){
36 head=new Cell(e,head);
37 }
38 Iterator iterator(){
39 return new ListItr(head);
40 }

Callers 1

mainMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected