Created
October 1, 2014 06:07
-
-
Save harukizaemon/d2e74236842e33cfd288 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
public static boolean isPresent(final Optional<?> ... optionals) { | |
for (final Optional<?> optional : optionals) { | |
if (!optional.isPresent()) { | |
return false; | |
} | |
} | |
return optionals.length > 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment