Home
last modified time | relevance | path

Searched defs:Utf8SuffixMap (Results 1 – 1 of 1) sorted by relevance

/external/rust/crates/regex-automata/src/nfa/
Dmap.rs176 pub struct Utf8SuffixMap { struct
180 version: u16,
182 capacity: usize,
185 map: Vec<Utf8SuffixEntry>,
210 impl Utf8SuffixMap { implementation
219 pub fn new(capacity: usize) -> Utf8SuffixMap { in new()