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

17
LINES

< > BotCompany Repo | #1001963 // matchMetaNoStar

JavaX fragment (include)

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;
}

Author comment

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: 596 / 836
Referenced in: [show references]