Created
April 3, 2024 13:06
-
-
Save TheLouisHong/1243defa52c3c252e930e804e799ca7e to your computer and use it in GitHub Desktop.
Java: Table of Function Objects Signatures (Callable, Runnable, Function, ...)
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
Supplier () -> x | |
Consumer x -> () | |
BiConsumer x, y -> () | |
Callable () -> x throws ex | |
Runnable () -> () | |
Function x -> y | |
BiFunction x,y -> z | |
Predicate x -> boolean | |
UnaryOperator x1 -> x2 | |
BinaryOperator x1,x2 -> x3 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment