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

6
LINES

< > BotCompany Repo | #1012383 // filterCic - filter items that contain a string (ignoring case)

JavaX fragment (include)

static L<S> filterCic(Iterable<S> l, S s) {
  new L<S> out;
  if (l != null) for (S x : l)
    if (cic(x, s)) out.add(x);
  ret out;
}

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: #1012383
Snippet name: filterCic - filter items that contain a string (ignoring case)
Eternal ID of this version: #1012383/3
Text MD5: 0b361e3da5486feb1dc296687eb4c505
Author: stefan
Category: javax
Type: JavaX fragment (include)
Public (visible to everyone): Yes
Archived (hidden from active list): No
Created/modified: 2018-01-12 10:32:04
Source code size: 139 bytes / 6 lines
Pitched / IR pitched: No / No
Views / Downloads: 356 / 377
Version history: 2 change(s)
Referenced in: [show references]