1 | static <A, B> Map<A, B> pairsToOrderedMap(Collection<? extends Pair<A, B>> l) {
|
2 | Map<A, B> map = litorderedmap(); |
3 | if (l != null) for (Pair<A, B> p : l) |
4 | map.put(p.a, p.b); |
5 | ret map; |
6 | } |
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: | #1009021 |
| Snippet name: | pairsToOrderedMap - make LinkedHashMap from collection of pairs |
| Eternal ID of this version: | #1009021/2 |
| Text MD5: | 40368a9d213f325ff0471e3bb2f97833 |
| Author: | stefan |
| Category: | javax |
| Type: | JavaX fragment (include) |
| Public (visible to everyone): | Yes |
| Archived (hidden from active list): | No |
| Created/modified: | 2017-06-28 18:07:23 |
| Source code size: | 195 bytes / 6 lines |
| Pitched / IR pitched: | No / No |
| Views / Downloads: | 750 / 767 |
| Version history: | 1 change(s) |
| Referenced in: | [show references] |