Libraryless. Click here for Pure Java version (7744L/43K).
1 | static S concatMap_strings(O f, Iterable l) {
|
2 | ret join((L<S>) map(f, l)); |
3 | } |
4 | |
5 | static S concatMap_strings(O f, O[] l) {
|
6 | ret join((L<S>) map(f, l)); |
7 | } |
8 | |
9 | static S concatMap_strings(Iterable l, O f) {
|
10 | ret concatMap_strings(f, l); |
11 | } |
12 | |
13 | static <A> S concatMap_strings(Iterable<A> l, IF1<A, S> f) {
|
14 | ret concatMap_strings(f, l); |
15 | } |
16 | |
17 | static <A> S lambdaMapLike concatMap_strings(IF1<A, S> f, Iterable<A> l) {
|
18 | ret concatMap_strings((O) f, l); |
19 | } |
20 | |
21 | static <A> S lambdaMapLike concatMap_strings(IF1<A, S> f, A[] l) {
|
22 | ret concatMap_strings((O) f, l); |
23 | } |
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: | 974 / 1142 |
| Version history: | 5 change(s) |
| Referenced in: | [show references] |