Struct regex_automata::nfa::thompson::range_trie::NextInsert
source · struct NextInsert {
state_id: StateID,
ranges: [Utf8Range; 4],
len: u8,
}
Expand description
The next state to process during insertion and any remaining ranges that we want to add for a particular sequence of ranges. The first such instance is always the root state along with all ranges given.
Fields§
§state_id: StateID
The next state to begin inserting ranges. This state should be the
state at which ranges[0]
should be inserted.
ranges: [Utf8Range; 4]
The ranges to insert. We used a fixed-size array here to avoid an allocation.
len: u8
The number of valid ranges in the above array.
Implementations§
source§impl NextInsert
impl NextInsert
sourcefn new(state_id: StateID, ranges: &[Utf8Range]) -> NextInsert
fn new(state_id: StateID, ranges: &[Utf8Range]) -> NextInsert
Create the next item to visit. The given state ID should correspond to the state at which the first range in the given slice should be inserted. The slice given must not be empty and it must be no longer than 4.
sourcefn push(
trie: &mut RangeTrie,
stack: &mut Vec<NextInsert>,
ranges: &[Utf8Range],
) -> StateID
fn push( trie: &mut RangeTrie, stack: &mut Vec<NextInsert>, ranges: &[Utf8Range], ) -> StateID
Push a new empty state to visit along with any remaining ranges that still need to be inserted. The ID of the new empty state is returned.
If ranges is empty, then no new state is created and FINAL is returned.
Trait Implementations§
source§impl Clone for NextInsert
impl Clone for NextInsert
source§fn clone(&self) -> NextInsert
fn clone(&self) -> NextInsert
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more