Type Definition regex::dfa::InstPtr [−][src]
type InstPtr = u32;
InstPtr
is a 32 bit pointer into a sequence of opcodes (i.e., it indexes
an NFA state).
Throughout this library, this is usually set to usize
, but we force a
u32
here for the DFA to save on space.