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

8
LINES

< > BotCompany Repo | #1023649 // objectsWhereIC

JavaX fragment (include)

static <A> L<A> objectsWhereIC(Collection<A> c, O... data) {
  if (c == null) null;
  new L<A> l;
  for (A x : c)
    if (checkFieldsIC(x, data))
      l.add(x);
  ret l;
}

Author comment

Began life as a copy of #1015706

download  show line numbers  debug dex  old transpilations   

Travelled to 8 computer(s): bhatertpkbcr, cfunsshuasjs, mqqgnosmbjvj, podlckwnjdmb, pyentgdyhuwx, pzhvpgtvlbxg, tvejysmllsmz, vouqrxazstgt

No comments. add comment

Snippet ID: #1023649
Snippet name: objectsWhereIC
Eternal ID of this version: #1023649/1
Text MD5: f6e4541890131b84a40be5b2f60f4c9f
Author: stefan
Category: javax
Type: JavaX fragment (include)
Public (visible to everyone): Yes
Archived (hidden from active list): No
Created/modified: 2019-06-30 00:04:53
Source code size: 179 bytes / 8 lines
Pitched / IR pitched: No / No
Views / Downloads: 215 / 286
Referenced in: #1006654 - Standard functions list 2 (LIVE, continuation of #761)
#1027960 - objectsWhereNotIC