(T 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(); |
| 13 | Iterable<T> OrderedValues(boolean firstToLast); |
nothing calls this directly
no outgoing calls
no test coverage detected