Struct regex_automata::dfa::onepass::Epsilons

source ·
struct Epsilons(u64);
Expand description

Epsilons represents all of the NFA epsilons transitions that went into a single transition in a single DFA state. In this case, it only represents the epsilon transitions that have some kind of non-consuming side effect: either the transition requires storing the current position of the search into a slot, or the transition is conditional and requires the current position in the input to satisfy an assertion before the transition may be taken.

This folds the cumulative effect of a group of NFA states (all connected by epsilon transitions) down into a single set of bits. While these bits can represent all possible conditional epsilon transitions, it only permits storing up to a somewhat small number of slots.

Epsilons is represented as a 42-bit integer. For example, it is packed into the lower 42 bits of a Transition. (Where the high 22 bits contains a StateID and a special “match wins” property.)

Tuple Fields§

§0: u64

Implementations§

source§

impl Epsilons

source

const SLOT_MASK: u64 = 4_398_046_510_080u64

source

const SLOT_SHIFT: u64 = 10u64

source

const LOOK_MASK: u64 = 1_023u64

source

fn empty() -> Epsilons

Create a new empty epsilons. It has no slots and no assertions that need to be satisfied.

source

fn is_empty(self) -> bool

Returns true if this epsilons contains no slots and no assertions.

source

fn slots(self) -> Slots

Returns the slot epsilon transitions.

source

fn set_slots(self, slots: Slots) -> Epsilons

Set the slot epsilon transitions.

source

fn looks(self) -> LookSet

Return the set of look-around assertions in these epsilon transitions.

source

fn set_looks(self, look_set: LookSet) -> Epsilons

Set the look-around assertions on these epsilon transitions.

Trait Implementations§

source§

impl Clone for Epsilons

source§

fn clone(&self) -> Epsilons

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for Epsilons

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Copy for Epsilons

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.