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

7
LINES

< > BotCompany Repo | #1019803 // filterConceptsIC - filter a list of concepts by params, ignore case in case of strings

JavaX fragment (include) [tags: use-pretranspiled]

Libraryless. Click here for Pure Java version (14772L/95K).

static <A extends Concept> L<A> filterConceptsIC(Cl<A> list, O... params) {
  new L<A> l;
  if (list != null) for (A x : list)
    if (checkConceptFieldsIC(x, params))
      l.add(x);
  ret l;
}

Author comment

Began life as a copy of #1006048

download  show line numbers  debug dex  old transpilations   

Travelled to 10 computer(s): bhatertpkbcr, cfunsshuasjs, gwrvuhgaqvyk, irmadwmeruwu, mqqgnosmbjvj, pyentgdyhuwx, pzhvpgtvlbxg, qsqiayxyrbia, tvejysmllsmz, vouqrxazstgt

No comments. add comment

Snippet ID: #1019803
Snippet name: filterConceptsIC - filter a list of concepts by params, ignore case in case of strings
Eternal ID of this version: #1019803/3
Text MD5: 86bcd296fccfc6f2ca35b62a13caf02c
Transpilation MD5: 2f06347a42200becac3a5a59e27de4c7
Author: stefan
Category: javax / concepts
Type: JavaX fragment (include)
Public (visible to everyone): Yes
Archived (hidden from active list): No
Created/modified: 2021-03-31 18:11:14
Source code size: 200 bytes / 7 lines
Pitched / IR pitched: No / No
Views / Downloads: 269 / 349
Version history: 2 change(s)
Referenced in: [show references]