Last active
November 11, 2016 10:11
-
-
Save amatkivskiy/cd38ccc422930efb12852c417e805200 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
boolean find(List<MediaItem> data) { | |
return Stream.stream(data) | |
.any(new solid.functions.Func1<MediaItem, Boolean>() { | |
@Override | |
public Boolean call(MediaItem item) { | |
return item.isActive; | |
} | |
}); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment