Created
November 7, 2017 01:27
-
-
Save mcupak/9ebb626abee99288f5b48cf23d2dfb6c to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| jshell> Map.ofEntries( | |
| Signatures: | |
| Map<K,V> Map<K, V>.<K, V>ofEntries(Map.Entry<? extends K,? extends V>... entries) | |
| <press tab again to see documentation> | |
| jshell> Map.ofEntries(Map.entry(1, "hello readers of the blog")) | |
| $15 ==> {1=hello readers of the blog} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment