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

5
LINES

< > BotCompany Repo | #1026195 // replaceKey

JavaX fragment (include)

static <A, B> void replaceKey(Map<A, B> map, A oldKey, A newKey) {
  if (map == null || !map.containsKey(oldKey)) ret;
  map.put(newKey, map.get(oldKey));
  map.remove(oldKey);
}

download  show line numbers  debug dex  old transpilations   

Travelled to 6 computer(s): bhatertpkbcr, mqqgnosmbjvj, pyentgdyhuwx, pzhvpgtvlbxg, tvejysmllsmz, vouqrxazstgt

No comments. add comment

Snippet ID: #1026195
Snippet name: replaceKey
Eternal ID of this version: #1026195/2
Text MD5: eb93b6f4ceb5a0180c3d2f3223611e9e
Author: stefan
Category: javax
Type: JavaX fragment (include)
Public (visible to everyone): Yes
Archived (hidden from active list): No
Created/modified: 2019-11-29 01:11:34
Source code size: 182 bytes / 5 lines
Pitched / IR pitched: No / No
Views / Downloads: 105 / 143
Version history: 1 change(s)
Referenced in: [show references]