MCPcopy Create free account
hub / github.com/PrajaktaSathe/Java / peek

Method peek

Programs/Stack.java:62–67  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

60 }
61
62 public int peek(){
63 if(isEmpty()){
64 throw new EmptyStackException();
65 }
66 return top.getData();
67 }
68}

Callers 2

mainMethod · 0.80
buildTreeMethod · 0.80

Calls 2

isEmptyMethod · 0.95
getDataMethod · 0.45

Tested by

no test coverage detected