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

10
LINES

< > BotCompany Repo | #1026558 // getMatchesX2_all - getMatchesX_all + vbar patterns

JavaX fragment (include)

static L<Matches> getMatchesX2_all(S pat, Iterable<S> l) {
  new Matches m;
  new L<Matches> out;
  for (S s : unnull(l))
    if (matchX2(pat, s, m)) {
      out.add(m);
      m = new Matches;
    }
  ret out;
}

Author comment

Began life as a copy of #1021443

download  show line numbers  debug dex  old transpilations   

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

No comments. add comment

Snippet ID: #1026558
Snippet name: getMatchesX2_all - getMatchesX_all + vbar patterns
Eternal ID of this version: #1026558/1
Text MD5: c5a4bf576910ef414049f1e570a9f313
Author: stefan
Category: javax
Type: JavaX fragment (include)
Public (visible to everyone): Yes
Archived (hidden from active list): No
Created/modified: 2020-01-12 17:52:13
Source code size: 220 bytes / 10 lines
Pitched / IR pitched: No / No
Views / Downloads: 183 / 204
Referenced in: #1006654 - Standard functions list 2 (LIVE, continuation of #761)