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

6
LINES

< > BotCompany Repo | #1011633 // listMinusIC - list minus some elements

JavaX fragment (include)

static L<S> listMinusIC(L<S> l, S... stuff) {
  L<S> l2 = cloneList(l);
  for (S s : stuff)
    removeAllIC(l2, s);
  ret l2;
}

Author comment

Began life as a copy of #1004283

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: #1011633
Snippet name: listMinusIC - list minus some elements
Eternal ID of this version: #1011633/3
Text MD5: cdaceee903d5e0cc2482204311b1459c
Author: stefan
Category: javax
Type: JavaX fragment (include)
Public (visible to everyone): Yes
Archived (hidden from active list): No
Created/modified: 2017-11-01 04:59:55
Source code size: 132 bytes / 6 lines
Pitched / IR pitched: No / No
Views / Downloads: 335 / 388
Version history: 2 change(s)
Referenced in: [show references]