()
| 7 | interface 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; |
| 12 | Iterable<T> Values(); |
nothing calls this directly
no outgoing calls
no test coverage detected