Docs.rs
regex-cursor-0.1.5
regex-cursor 0.1.5
Permalink
Docs.rs crate page
MIT
OR
Apache-2.0
Links
Repository
crates.io
Source
Owners
pascalkuthe
the-mikedavis
Dependencies
log ^0.4.22
normal
memchr ^2.7
normal
regex-automata ^0.4.7
normal
regex-syntax ^0.8.4
normal
ropey ^1.6.1
normal
optional
anyhow ^1.0.89
dev
proptest ^1.5.0
dev
regex-test ^0.1.1
dev
Versions
78.72%
of the crate is documented
Platform
i686-pc-windows-msvc
i686-unknown-linux-gnu
x86_64-apple-darwin
x86_64-pc-windows-msvc
x86_64-unknown-linux-gnu
Feature flags
docs.rs
About docs.rs
Privacy policy
Rust
Rust website
The Book
Standard Library API Reference
Rust by Example
The Cargo Guide
Clippy Documentation
regex_
cursor
0.1.5
Module pikevm
Module Items
Structs
Functions
In regex_
cursor::
engines
regex_cursor
::
engines
Module
pikevm
Copy item path
Source
Structs
§
Builder
A builder for a
PikeVM
.
Cache
A cache represents mutable state that a
PikeVM
requires during a search.
Config
The configuration used for building a
PikeVM
.
Find
Matches
An iterator over all non-overlapping matches for a particular search.
PikeVM
A virtual machine for executing regex searches with capturing groups.
Functions
§
find_
iter
Returns an iterator over all non-overlapping leftmost matches in the given bytes. If no match exists, then the iterator yields no elements.
is_
match
Returns true if and only if this
PikeVM
matches the given haystack.
search
Executes a leftmost forward search and writes the spans of capturing groups that participated in a match into the provided
Captures
value. If no match was found, then
Captures::is_match
is guaranteed to return
false
.
search_
slots