Type Alias tvix_eval::compiler::GlobalsMap

source ·
pub type GlobalsMap = HashMap<&'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, RandomState>,
}

Fields§

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