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

7
LINES

< > BotCompany Repo | #1016853 // listMinusToString - list without elements matching a toString string

JavaX fragment (include)

static <A> L<A> listMinusToString(Iterable<A> l, S s) {
  new L<A> out;
  if (l != null) for (A x : l)
    if (x == null || neq(x.toString(), s))
      out.add(x);
  ret out;
}

Author comment

Began life as a copy of #1014727

download  show line numbers  debug dex  old transpilations   

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

No comments. add comment

Snippet ID: #1016853
Snippet name: listMinusToString - list without elements matching a toString string
Eternal ID of this version: #1016853/1
Text MD5: 0236653fc39f71b82bf13ac4f15e9b2c
Author: stefan
Category: javax
Type: JavaX fragment (include)
Public (visible to everyone): Yes
Archived (hidden from active list): No
Created/modified: 2018-07-05 19:46:20
Source code size: 182 bytes / 7 lines
Pitched / IR pitched: No / No
Views / Downloads: 271 / 298
Referenced in: [show references]