We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 04fb1bf commit 8c0c6fcCopy full SHA for 8c0c6fc
src/exp.rs
@@ -178,24 +178,5 @@ impl Worker {
178
}
179
180
true
181
-
182
- /*
183
184
- let term = term.as_bytes();
185
186
- 'bytes: for (i, _) in buf.iter().enumerate() {
187
- if buf.len() - i < term.len() {
188
- return false;
189
- }
190
- for (j, term_b) in term.iter().enumerate() {
191
- if buf[i + j] != *term_b {
192
- continue 'bytes;
193
194
- if j == term.len() - 1 {
195
- return true;
196
197
198
199
- return false;*/
200
201
0 commit comments