Not logged in.  Login/Logout/Register | List snippets | | Create snippet | Upload image | Upload data

31
LINES

< > BotCompany Repo | #1034377 // concatMapStrings - synonym of concatMap_strings

JavaX fragment (include)

1  
static S concatMapStrings(O f, Iterable l) {
2  
  ret concatMap_strings(f, l);
3  
}
4  
5  
6  
7  
static S concatMapStrings(O f, O[] l) {
8  
  ret concatMap_strings(f, l);
9  
}
10  
11  
12  
13  
static S concatMapStrings(Iterable l, O f) {
14  
  ret concatMap_strings(l, f);
15  
}
16  
17  
18  
19  
static <A> S concatMapStrings(Iterable<A> l, IF1<A, S> f) {
20  
  ret concatMap_strings(l, f);
21  
}
22  
23  
24  
25  
static <A> S lambdaMapLike concatMapStrings(IF1<A, S> f, Iterable<A> l) {
26  
  ret concatMap_strings(f, l);
27  
}
28  
29  
static <A> S lambdaMapLike concatMapStrings(IF1<A, S> f, A[] l) {
30  
  ret concatMap_strings(f, l);
31  
}

download  show line numbers  debug dex  old transpilations   

Travelled to 3 computer(s): bhatertpkbcr, mowyntqkapby, mqqgnosmbjvj

No comments. add comment

Snippet ID: #1034377
Snippet name: concatMapStrings - synonym of concatMap_strings
Eternal ID of this version: #1034377/2
Text MD5: 5dbc7103a2f75380cc73b69668ef8566
Author: someone
Category:
Type: JavaX fragment (include)
Public (visible to everyone): Yes
Archived (hidden from active list): No
Created/modified: 2022-04-05 21:12:43
Source code size: 570 bytes / 31 lines
Pitched / IR pitched: No / No
Views / Downloads: 95 / 124
Version history: 1 change(s)
Referenced in: [show references]