static <A, B> Map<A, B> pairsToOrderedMap(Collection<? extends Pair<A, B>> l) { Map<A, B> map = litorderedmap(); if (l != null) for (Pair<A, B> p : l) map.put(p.a, p.b); ret map; }
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: | 751 / 767 |
| Version history: | 1 change(s) |
| Referenced in: | #1006654 - Standard functions list 2 (LIVE, continuation of #761) #1009583 - pairsToTreeMap - make TreeMap from collection of pairs |