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

8
LINES

< > BotCompany Repo | #1029000 // keysWhereValueContainsIC_usingCandidates

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

Libraryless. Click here for Pure Java version (2619L/16K).

static <A> L<A> keysWhereValueContainsIC_usingCandidates(S b, Map<A, S> map, Iterable<A> candidates) {
  new L<A> l;
  if (map != null)
    fOr (A key : candidates)
      if (cic(map.get(key), b))
        l.add(key);
  ret l;
}

Author comment

Began life as a copy of #1028999

download  show line numbers  debug dex  old transpilations   

Travelled to 7 computer(s): bhatertpkbcr, mqqgnosmbjvj, pyentgdyhuwx, pzhvpgtvlbxg, tvejysmllsmz, vouqrxazstgt, xrpafgyirdlv

No comments. add comment

Snippet ID: #1029000
Snippet name: keysWhereValueContainsIC_usingCandidates
Eternal ID of this version: #1029000/3
Text MD5: 546a06f7b3ea716eaca54924a1c3d390
Transpilation MD5: 9a2981e1131ff52a144ad6a6de776ccf
Author: stefan
Category: javax
Type: JavaX fragment (include)
Public (visible to everyone): Yes
Archived (hidden from active list): No
Created/modified: 2020-07-16 18:01:06
Source code size: 234 bytes / 8 lines
Pitched / IR pitched: No / No
Views / Downloads: 126 / 186
Version history: 2 change(s)
Referenced in: #1006654 - Standard functions list 2 (LIVE, continuation of #761)
#1029003 - keysWhereValueContains_usingCandidates