Libraryless. Click here for Pure Java version (2551L/16K).
1 | static Map mapKeyAndFunction(Iterable l, O f) { |
2 | ret mapKeyAndFunction(f, l); |
3 | } |
4 | |
5 | static Map mapLike mapKeyAndFunction(O f, Iterable l) { |
6 | new HashMap map; |
7 | if (l != null) for (O o : l) |
8 | map.put(o, callF(f, o)); |
9 | ret map; |
10 | } |
11 | |
12 | static <A, B, C> Map<A, C> mapKeyAndFunction(Map<A, B> map, IF2<A, B, C> f) { |
13 | new HashMap map2; |
14 | if (map != null) for (A key, B value : map) |
15 | map2.put(key, callF(f, key, value)); |
16 | ret map2; |
17 | } |
18 | |
19 | |
20 | static <A, B> Map<A, B> mapKeyAndFunction(Iterable<A> l, IF1<A, B> f) { |
21 | ret mapKeyAndFunction(f, l); |
22 | } |
Began life as a copy of #1018013
download show line numbers debug dex old transpilations
Travelled to 7 computer(s): bhatertpkbcr, cfunsshuasjs, mqqgnosmbjvj, pyentgdyhuwx, pzhvpgtvlbxg, tvejysmllsmz, vouqrxazstgt
No comments. add comment
Snippet ID: | #1021879 |
Snippet name: | mapKeyAndFunction - iterate on list, keep object as key, function result as value |
Eternal ID of this version: | #1021879/7 |
Text MD5: | 97a40dfa8f6f18fce0fb9b8ea5b8b9ce |
Transpilation MD5: | a98b54c826122b189120f2262c69c2b0 |
Author: | stefan |
Category: | javax |
Type: | JavaX fragment (include) |
Public (visible to everyone): | Yes |
Archived (hidden from active list): | No |
Created/modified: | 2020-11-16 11:05:39 |
Source code size: | 557 bytes / 22 lines |
Pitched / IR pitched: | No / No |
Views / Downloads: | 335 / 461 |
Version history: | 6 change(s) |
Referenced in: | [show references] |