pub trait UniqueSemanticMap {
    // Required method
    fn get_unique_semantic(
        &self,
        name: &str
    ) -> Option<Semantic<UniqueSemantics, ()>>;
}
Expand description

A trait for maps that can return unique semantic units.

Required Methods§

source

fn get_unique_semantic( &self, name: &str ) -> Option<Semantic<UniqueSemantics, ()>>

Get the unique semantic for the given variable name.

Implementations on Foreign Types§

source§

impl UniqueSemanticMap for FastHashMap<String, UniformSemantic>

Implementors§