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

44
LINES

< > BotCompany Repo | #1028595 // map_nonNulls - synonym of mapNonNulls

JavaX fragment (include)

1  
static L map_nonNulls(Iterable l, O f) {
2  
  ret mapNonNulls(l, f);
3  
}
4  
5  
6  
7  
static L lambdaMapLike map_nonNulls(O f, Iterable l) {
8  
  ret mapNonNulls(f, l);
9  
}
10  
11  
12  
13  
static L map_nonNulls(O f, O[] l) {
14  
  ret mapNonNulls(f, l);
15  
}
16  
17  
18  
  static <A, B> L<B> map_nonNulls(Iterable<A> l, F1<A, B> f) {
19  
  ret mapNonNulls(l, f);
20  
}
21  
22  
23  
24  
  static <A, B> L<B> map_nonNulls(F1<A, B> f, Iterable<A> l) {
25  
  ret mapNonNulls(f, l);
26  
}
27  
28  
29  
30  
static <A, B> L<B> map_nonNulls(A[] l, IF1<A, B> f) {
31  
  ret mapNonNulls(l, f);
32  
}
33  
34  
35  
36  
static <A, B> L<B> map_nonNulls(Iterable<A> l, IF1<A, B> f) {
37  
  ret mapNonNulls(l, f);
38  
}
39  
40  
41  
42  
static <A, B> L<B> map_nonNulls(IF1<A, B> f, Iterable<A> l) {
43  
  ret mapNonNulls(f, l);
44  
}

download  show line numbers  debug dex  old transpilations   

Travelled to 7 computer(s): bhatertpkbcr, mqqgnosmbjvj, pyentgdyhuwx, pzhvpgtvlbxg, tvejysmllsmz, vouqrxazstgt, xrpafgyirdlv

No comments. add comment

Snippet ID: #1028595
Snippet name: map_nonNulls - synonym of mapNonNulls
Eternal ID of this version: #1028595/1
Text MD5: 3f61474ce3e399e3f8fc8ae7ab37e9c0
Author: stefan
Category:
Type: JavaX fragment (include)
Public (visible to everyone): Yes
Archived (hidden from active list): No
Created/modified: 2020-06-28 13:17:56
Source code size: 684 bytes / 44 lines
Pitched / IR pitched: No / No
Views / Downloads: 124 / 158
Referenced in: [show references]