static bool startsWithOneOf(S s, S... l) { for (S x : l) if (startsWith(s, x)) ret true; ret false; } static bool startsWithOneOf(S s, Matches m, S... l) { for (S x : l) if (startsWith(s, x, m)) true; false; }
Began life as a copy of #1003652
download show line numbers debug dex old transpilations
Travelled to 15 computer(s): aoiabmzegqzx, bhatertpkbcr, cbybwowwnfue, cfunsshuasjs, ddnzoavkxhuk, gwrvuhgaqvyk, ishqpsrjomds, lpdgvwnxivlt, mqqgnosmbjvj, pyentgdyhuwx, pzhvpgtvlbxg, tslmcundralx, tvejysmllsmz, vouqrxazstgt, xrpafgyirdlv
No comments. add comment
| Snippet ID: | #1003973 |
| Snippet name: | startsWithOneOf - startsWith, multiple checks |
| Eternal ID of this version: | #1003973/2 |
| Text MD5: | e27991adbdd05a967341ff24c0f146e9 |
| Author: | stefan |
| Category: | javax |
| Type: | JavaX fragment (include) |
| Public (visible to everyone): | Yes |
| Archived (hidden from active list): | No |
| Created/modified: | 2020-04-03 00:09:38 |
| Source code size: | 220 bytes / 7 lines |
| Pitched / IR pitched: | No / No |
| Views / Downloads: | 974 / 1011 |
| Version history: | 1 change(s) |
| Referenced in: | #1006654 - Standard functions list 2 (LIVE, continuation of #761) #1012106 - swicOneOf - swic (startsWithIgnoreCase), multiple checks |