Returns true if this stack is empty. @return true if this stack is empty; false otherwise
()
| 71 | * @return true if this stack is empty; false otherwise |
| 72 | */ |
| 73 | public boolean isEmpty() { |
| 74 | return first == null; |
| 75 | } |
| 76 | |
| 77 | /** |
| 78 | * Returns the number of items in this stack. |
no outgoing calls
no test coverage detected