Libraryless. Click here for Pure Java version (72L/1K).
1 | static <A, B> Map<A, B> putOrCreateSyncMap(Map<A, B> map, A key, B value) {
|
2 | if (map == null) map = syncHashMap(); |
3 | map.put(key, value); |
4 | ret map; |
5 | } |
Began life as a copy of #1030902
download show line numbers debug dex old transpilations
Travelled to 3 computer(s): bhatertpkbcr, mowyntqkapby, mqqgnosmbjvj
No comments. add comment
| Snippet ID: | #1035131 |
| Snippet name: | putOrCreateSyncMap - make syncHashMap if null. allow null keys and values |
| Eternal ID of this version: | #1035131/1 |
| Text MD5: | 0d56e06e7db72fdc866e3833452ba09d |
| Transpilation MD5: | 40c3541cd1a87253fcef0cd32bb0e517 |
| Author: | stefan |
| Category: | javax |
| Type: | JavaX fragment (include) |
| Public (visible to everyone): | Yes |
| Archived (hidden from active list): | No |
| Created/modified: | 2022-03-30 20:08:01 |
| Source code size: | 155 bytes / 5 lines |
| Pitched / IR pitched: | No / No |
| Views / Downloads: | 354 / 467 |
| Referenced in: | [show references] |