Advertisement
crassus9999

Untitled

Apr 16th, 2014
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.19 KB | None | 0 0
  1. @Override
  2.     public boolean isEmpty() {
  3.         if(predicate.apply(source.head())) {
  4.             return true;
  5.         } else {
  6.             source = source.tail().isEmpty();
  7.         }
  8.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement