1 | static <A, B> Map<A, B> mapWithoutKey(Map<A, B> map, A key) { |
2 | if (map == null || !map.containsKey(key)) ret map; |
3 | Map m = cloneMap(map); |
4 | m.remove(key); |
5 | ret m; |
6 | } |
7 | |
8 | static <A, B> Map<A, B> mapWithoutKey(A key, Map<A, B> map) { |
9 | ret mapWithoutKey(map, key); |
10 | } |
download show line numbers debug dex old transpilations
Travelled to 13 computer(s): aoiabmzegqzx, bhatertpkbcr, cbybwowwnfue, cfunsshuasjs, gwrvuhgaqvyk, ishqpsrjomds, lpdgvwnxivlt, mqqgnosmbjvj, pyentgdyhuwx, pzhvpgtvlbxg, tslmcundralx, tvejysmllsmz, vouqrxazstgt
No comments. add comment
Snippet ID: | #1003252 |
Snippet name: | mapWithoutKey - clone map (if necessary), drop a key |
Eternal ID of this version: | #1003252/5 |
Text MD5: | 7f05910a96055ab0bcf394bccb35c4de |
Author: | stefan |
Category: | javax |
Type: | JavaX fragment (include) |
Public (visible to everyone): | Yes |
Archived (hidden from active list): | No |
Created/modified: | 2020-10-26 09:30:57 |
Source code size: | 268 bytes / 10 lines |
Pitched / IR pitched: | No / No |
Views / Downloads: | 712 / 707 |
Version history: | 4 change(s) |
Referenced in: | [show references] |