Not logged in.  Login/Logout/Register | List snippets | | Create snippet | Upload image | Upload data

5
LINES

< > BotCompany Repo | #1027371 // mapPutAll_noOverwrite

JavaX fragment (include) [tags: use-pretranspiled]

Libraryless. Click here for Pure Java version (52L/1K).

static <A, B> void mapPutAll_noOverwrite(Map<A, B> dest, Map<A, B> src) {
  if (dest != null && src != null)
    for (A key, B value : src)
      mapPut_noOverwrite(dest, key, value);
}

Author comment

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: 146 / 207
Referenced in: [show references]