Advertisement
crassus9999

Untitled

Apr 16th, 2014
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.28 KB | None | 0 0
  1. @Override
  2.     public boolean isEmpty() {
  3.         if(predicate.apply(source.head())) {
  4.             source = new FilterView(source.tail(), predicate);
  5.             //jak to spustist znova a pridat k tomu true kdzy se to povede?
  6.         } else {
  7.             return false;
  8.         }
  9.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement