static int matchMetaNoStar(L<S> tok, S... tokens) {
outer: for (int i = 1; i+l(tokens)*2-2 < l(tok); i += 2) {
for (int j = 0; j < l(tokens); j++) {
S p = tokens[j];
S t = tok.get(i+j*2);
boolean ok;
if (eq(p, "<number>"))
ok = isInteger(t);
else
ok = eq(p, t);
if (!ok)
continue outer;
}
return i;
}
return -1;
}Began life as a copy of #1001944
download show line numbers debug dex old transpilations
Travelled to 13 computer(s): aoiabmzegqzx, bhatertpkbcr, cbybwowwnfue, cfunsshuasjs, gwrvuhgaqvyk, ishqpsrjomds, lpdgvwnxivlt, mqqgnosmbjvj, pyentgdyhuwx, pzhvpgtvlbxg, tslmcundralx, tvejysmllsmz, vouqrxazstgt
No comments. add comment
| Snippet ID: | #1001963 |
| Snippet name: | matchMetaNoStar |
| Eternal ID of this version: | #1001963/1 |
| Text MD5: | d967fa8c4db6b4ac14438054c821064e |
| Author: | stefan |
| Category: | |
| Type: | JavaX fragment (include) |
| Public (visible to everyone): | Yes |
| Archived (hidden from active list): | No |
| Created/modified: | 2015-12-09 23:01:56 |
| Source code size: | 407 bytes / 17 lines |
| Pitched / IR pitched: | No / Yes |
| Views / Downloads: | 1089 / 1330 |
| Referenced in: | #1002427 - Accellerating 629 (SPIKE) #1006654 - Standard functions list 2 (LIVE, continuation of #761) #3000382 - Answer for ferdie (>> t = 1, f = 0) #3000383 - Answer for funkoverflow (>> t=1, f=0 okay) |