Libraryless. Click here for Pure Java version (52L/1K).
1 | static <A, B> void mapPutAll_noOverwrite(Map<A, B> dest, Map<A, B> src) {
|
2 | if (dest != null && src != null) |
3 | for (A key, B value : src) |
4 | mapPut_noOverwrite(dest, key, value); |
5 | } |
Began life as a copy of #1024976
download show line numbers debug dex old transpilations
Travelled to 7 computer(s): bhatertpkbcr, mqqgnosmbjvj, pyentgdyhuwx, pzhvpgtvlbxg, tvejysmllsmz, vouqrxazstgt, xrpafgyirdlv
No comments. add comment
| Snippet ID: | #1027371 |
| Snippet name: | mapPutAll_noOverwrite |
| Eternal ID of this version: | #1027371/1 |
| Text MD5: | 124248d7d7bf95b311a3d1d52514d03a |
| Transpilation MD5: | 531b908d0c0520e042ba8e1760bba20f |
| Author: | stefan |
| Category: | javax |
| Type: | JavaX fragment (include) |
| Public (visible to everyone): | Yes |
| Archived (hidden from active list): | No |
| Created/modified: | 2020-03-15 15:14:29 |
| Source code size: | 189 bytes / 5 lines |
| Pitched / IR pitched: | No / No |
| Views / Downloads: | 417 / 537 |
| Referenced in: | [show references] |