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)

static L map_nonNulls(Iterable l, O f) {
  ret mapNonNulls(l, f);
}



static L lambdaMapLike map_nonNulls(O f, Iterable l) {
  ret mapNonNulls(f, l);
}



static L map_nonNulls(O f, O[] l) {
  ret mapNonNulls(f, l);
}


  static <A, B> L<B> map_nonNulls(Iterable<A> l, F1<A, B> f) {
  ret mapNonNulls(l, f);
}



  static <A, B> L<B> map_nonNulls(F1<A, B> f, Iterable<A> l) {
  ret mapNonNulls(f, l);
}



static <A, B> L<B> map_nonNulls(A[] l, IF1<A, B> f) {
  ret mapNonNulls(l, f);
}



static <A, B> L<B> map_nonNulls(Iterable<A> l, IF1<A, B> f) {
  ret mapNonNulls(l, f);
}



static <A, B> L<B> map_nonNulls(IF1<A, B> f, Iterable<A> l) {
  ret mapNonNulls(f, l);
}

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: 121 / 154
Referenced in: [show references]