pub trait UniqueSemanticMap {
    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 FxHashMap<String, UniformSemantic>

source§

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

Implementors§