Libraryless. Click here for Pure Java version (7744L/43K).
static S concatMap_strings(O f, Iterable l) { ret join((L<S>) map(f, l)); } static S concatMap_strings(O f, O[] l) { ret join((L<S>) map(f, l)); } static S concatMap_strings(Iterable l, O f) { ret concatMap_strings(f, l); } static <A> S concatMap_strings(Iterable<A> l, IF1<A, S> f) { ret concatMap_strings(f, l); } static <A> S lambdaMapLike concatMap_strings(IF1<A, S> f, Iterable<A> l) { ret concatMap_strings((O) f, l); } static <A> S lambdaMapLike concatMap_strings(IF1<A, S> f, A[] l) { ret concatMap_strings((O) f, l); }
download show line numbers debug dex old transpilations
Travelled to 15 computer(s): aoiabmzegqzx, bhatertpkbcr, cbybwowwnfue, cfunsshuasjs, gwrvuhgaqvyk, irmadwmeruwu, ishqpsrjomds, lpdgvwnxivlt, mowyntqkapby, mqqgnosmbjvj, pyentgdyhuwx, pzhvpgtvlbxg, tslmcundralx, tvejysmllsmz, vouqrxazstgt
No comments. add comment
| Snippet ID: | #1008270 |
| Snippet name: | concatMap_strings |
| Eternal ID of this version: | #1008270/6 |
| Text MD5: | 26b75c56a643d360fde2e5f2d5164fa3 |
| Transpilation MD5: | 60de270d7af95dafd6ef5cb9086e1370 |
| Author: | stefan |
| Category: | javax |
| Type: | JavaX fragment (include) |
| Public (visible to everyone): | Yes |
| Archived (hidden from active list): | No |
| Created/modified: | 2022-04-05 21:13:05 |
| Source code size: | 566 bytes / 23 lines |
| Pitched / IR pitched: | No / No |
| Views / Downloads: | 972 / 1141 |
| Version history: | 5 change(s) |
| Referenced in: | #1006654 - Standard functions list 2 (LIVE, continuation of #761) |