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

11
LINES

< > BotCompany Repo | #1008835 // endingWithIC - filter list

JavaX fragment (include)

1  
static L<S> endingWithIC(Collection<S> l, fS suffix) {
2  
  new L<S> out;
3  
  for (S s : unnull(l))
4  
    if (ewic(s, suffix))
5  
      out.add(s);
6  
  ret out;
7  
}
8  
9  
static L<S> endingWithIC(S suffix, Collection<S> l) {
10  
  ret endingWithIC(l, suffix);
11  
}

Author comment

Began life as a copy of #1005350

download  show line numbers  debug dex  old transpilations   

Travelled to 13 computer(s): aoiabmzegqzx, bhatertpkbcr, cbybwowwnfue, cfunsshuasjs, gwrvuhgaqvyk, ishqpsrjomds, lpdgvwnxivlt, mqqgnosmbjvj, pyentgdyhuwx, pzhvpgtvlbxg, tslmcundralx, tvejysmllsmz, vouqrxazstgt

No comments. add comment

Snippet ID: #1008835
Snippet name: endingWithIC - filter list
Eternal ID of this version: #1008835/2
Text MD5: 606ba0c0affdb299ab82afc3f2b03351
Author: stefan
Category: javax
Type: JavaX fragment (include)
Public (visible to everyone): Yes
Archived (hidden from active list): No
Created/modified: 2018-01-01 03:46:53
Source code size: 248 bytes / 11 lines
Pitched / IR pitched: No / No
Views / Downloads: 488 / 567
Version history: 1 change(s)
Referenced in: [show references]