Libraryless. Click here for Pure Java version (2154L/14K).
static <A, B, C> L<C> mapPairsToList(Iterable<Pair<A, B>> l, F2<A, B, C> f) { L<C> x = emptyList(l); if (l != null) for (Pair<A, B> p : l) x.add(callF(f, p.a, p.b)); ret x; } static <A, B, C> L<C> mapPairsToList(Iterable<Pair<A, B>> l, IF2<A, B, C> f) { L<C> x = emptyList(l); if (l != null) for (Pair<A, B> p : l) x.add(f.get(p.a, p.b)); ret x; } static <A, B> L mapLike mapPairsToList(O f, Iterable<Pair<A, B>> l) { L x = emptyList(l); if (l != null) for (Pair<A, B> p : l) x.add(callF(f, p.a, p.b)); ret x; }
download show line numbers debug dex old transpilations
Travelled to 14 computer(s): aoiabmzegqzx, bhatertpkbcr, cbybwowwnfue, cfunsshuasjs, gwrvuhgaqvyk, irmadwmeruwu, ishqpsrjomds, lpdgvwnxivlt, mqqgnosmbjvj, pyentgdyhuwx, pzhvpgtvlbxg, tslmcundralx, tvejysmllsmz, vouqrxazstgt
No comments. add comment
| Snippet ID: | #1016467 |
| Snippet name: | mapPairsToList |
| Eternal ID of this version: | #1016467/3 |
| Text MD5: | 1219f560e7e6657bdab4081627301086 |
| Transpilation MD5: | ffef5acc5fe9081f657068b903b65a54 |
| Author: | stefan |
| Category: | javax |
| Type: | JavaX fragment (include) |
| Public (visible to everyone): | Yes |
| Archived (hidden from active list): | No |
| Created/modified: | 2019-11-11 13:35:24 |
| Source code size: | 562 bytes / 20 lines |
| Pitched / IR pitched: | No / No |
| Views / Downloads: | 739 / 914 |
| Version history: | 2 change(s) |
| Referenced in: | #1006654 - Standard functions list 2 (LIVE, continuation of #761) #1026175 - mapPairsToLines |