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

60
LINES

< > BotCompany Repo | #1032655 // jfind_reversed - synonym of rjfind

JavaX fragment (include)

1  
2  
3  
static int jfind_reversed(L<S> tok, S in) {
4  
  ret rjfind(tok, in);
5  
}
6  
7  
8  
9  
static int jfind_reversed(L<S> tok, int startIdx, S in) {
10  
  ret rjfind(tok, startIdx, in);
11  
}
12  
13  
14  
15  
static int jfind_reversed(L<S> tok, int startIdx, int endIndex, S in) {
16  
  ret rjfind(tok, startIdx, endIndex, in);
17  
}
18  
19  
20  
21  
static int jfind_reversed(L<S> tok, S in, O condition) {
22  
  ret rjfind(tok, in, condition);
23  
}
24  
25  
26  
27  
static int jfind_reversed(L<S> tok, int startIdx, S in, O condition) {
28  
  ret rjfind(tok, startIdx, in, condition);
29  
}
30  
31  
32  
33  
static int jfind_reversed(L<S> tok, int startIdx, int endIndex, S in, O condition) {
34  
  ret rjfind(tok, startIdx, endIndex, in, condition);
35  
}
36  
37  
38  
39  
// assumes you preprocessed tokin
40  
static int jfind_reversed(L<S> tok, L<S> tokin) {
41  
  ret rjfind(tok, tokin);
42  
}
43  
44  
45  
46  
static int jfind_reversed(L<S> tok, int startIdx, L<S> tokin) {
47  
  ret rjfind(tok, startIdx, tokin);
48  
}
49  
50  
51  
52  
static int jfind_reversed(L<S> tok, int startIdx, L<S> tokin, O condition) {
53  
  ret rjfind(tok, startIdx, tokin, condition);
54  
}
55  
56  
57  
58  
static int jfind_reversed(L<S> tok, int startIdx, int endIndex, L<S> tokin, O condition) {
59  
  ret rjfind(tok, startIdx, endIndex, tokin, condition);
60  
}

download  show line numbers  debug dex  old transpilations   

Travelled to 3 computer(s): bhatertpkbcr, mowyntqkapby, mqqgnosmbjvj

No comments. add comment

Snippet ID: #1032655
Snippet name: jfind_reversed - synonym of rjfind
Eternal ID of this version: #1032655/1
Text MD5: f62581302e7474f1d223cf55fb213aa3
Author: stefan
Category:
Type: JavaX fragment (include)
Public (visible to everyone): Yes
Archived (hidden from active list): No
Created/modified: 2021-09-30 05:11:31
Source code size: 1169 bytes / 60 lines
Pitched / IR pitched: No / No
Views / Downloads: 81 / 101
Referenced in: [show references]