MCPcopy Index your code
hub / github.com/Seogeurim/CS-study / size

Method size

contents/data-structure/code/Stack/IStack.java:4–4  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

2
3public interface IStack<E> {
4 public int size();
5 public boolean isEmpty();
6
7 public void push(E e);

Callers 2

sizeMethod · 0.65
lisFunction · 0.65

Implementers 2

LinkedStackcontents/data-structure/code/Stack/Lin
ArrayStackcontents/data-structure/code/Stack/Arr

Calls

no outgoing calls

Tested by

no test coverage detected