MCPcopy Create free account
hub / github.com/Freeze777/SDE-Interviewer-Notes / Push

Method Push

CleanCode/src/test/java/FoodPandaTest.java:8–8  ·  view source on GitHub ↗
(T t)

Source from the content-addressed store, hash-verified

6
7interface ISet<T> {
8 void Push(T t) throws IllegalArgumentException;
9 T Pop() throws NoSuchElementException;
10 T Remove(T t) throws NoSuchElementException, IllegalArgumentException;
11 ISet<T> Intersect(ISet<T> otherSet) throws IllegalArgumentException;

Callers

nothing calls this directly

Implementers 1

MySetCleanCode/src/test/java/FoodPandaTest.

Calls

no outgoing calls

Tested by

no test coverage detected