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

3
LINES

< > BotCompany Repo | #1003577 // eqicOneOf - equalsIgnoreCase, multiple checks

JavaX fragment (include)

static bool eqicOneOf(S s, S... l) {
  for (S x : l) if (eqic(s, x)) true; false;
}

Author comment

Began life as a copy of #1002106

download  show line numbers  debug dex  old transpilations   

Travelled to 18 computer(s): aoiabmzegqzx, bhatertpkbcr, cbybwowwnfue, cfunsshuasjs, ddnzoavkxhuk, gwrvuhgaqvyk, ishqpsrjomds, lpdgvwnxivlt, mowyntqkapby, mqqgnosmbjvj, onxytkatvevr, pyentgdyhuwx, pzhvpgtvlbxg, thuhawujahgc, tslmcundralx, tvejysmllsmz, vouqrxazstgt, xrpafgyirdlv

No comments. add comment

Snippet ID: #1003577
Snippet name: eqicOneOf - equalsIgnoreCase, multiple checks
Eternal ID of this version: #1003577/1
Text MD5: 2498813229f517e5701a169c7fa646c3
Author: stefan
Category: javax
Type: JavaX fragment (include)
Public (visible to everyone): Yes
Archived (hidden from active list): No
Created/modified: 2016-07-22 13:45:00
Source code size: 85 bytes / 3 lines
Pitched / IR pitched: No / No
Views / Downloads: 593 / 886
Referenced in: #1003652 - eqOneOf - equals, multiple checks
#1006654 - Standard functions list 2 (LIVE, continuation of #761)
#1007322 - eqOneOfIC - synonym of eqicOneOf - equalsIgnoreCase, multiple checks
#1011061 - neqicOneOf - !equalsIgnoreCase, multiple checks
#1015947 - ewicOneOf - endsWithIgnoreCase, multiple checks