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

19
LINES

< > BotCompany Repo | #1022877 // pAttractor_allMatches3 - accepts multiple attractors, returns cloned attractors

JavaX fragment (include)

static L<PartialAttractor> pAttractor_allMatches3(Collection<PartialAttractor> attractors, LS tok) {
  int i = 0;
  new L<PartialAttractor> out;
  while (licensed() && i < l(tok)) {
    new Lowest<PartialAttractor> best;
    for (PartialAttractor a : attractors) {
      a.tok = subList(tok, i);
      if (a.find()) {
        if (a.matchedRange.end < 2)
          continue with print("Bad attractor (empty match): " + a);
        best.put(shallowClone(a), a.matchedRange.start);
      }
    }
    if (!best.has()) break; // no more matches
    out.add(best!);
    i += best->matchedRange.end & ~1; // go to next N token
  }
  ret out;
}

Author comment

Began life as a copy of #1022875

download  show line numbers  debug dex  old transpilations   

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

No comments. add comment

Snippet ID: #1022877
Snippet name: pAttractor_allMatches3 - accepts multiple attractors, returns cloned attractors
Eternal ID of this version: #1022877/3
Text MD5: 2cc05d720eed633485016430ce90a40a
Author: stefan
Category: javax / a.i.
Type: JavaX fragment (include)
Public (visible to everyone): Yes
Archived (hidden from active list): No
Created/modified: 2019-04-12 17:06:45
Source code size: 654 bytes / 19 lines
Pitched / IR pitched: No / No
Views / Downloads: 172 / 209
Version history: 2 change(s)
Referenced in: [show references]