Type Alias tvix_eval::compiler::GlobalsMap

source ·
pub type GlobalsMap = FxHashMap<&'static str, Value>;
Expand description

The map of globally available functions and other values that should implicitly be resolvable in the global scope.

Aliased Type§

struct GlobalsMap {
    base: HashMap<&'static str, Value, FxBuildHasher>,
}

Fields§

§base: HashMap<&'static str, Value, FxBuildHasher>