Skip to main content

paramtab

Function paramtab 

Source
pub fn paramtab() -> &'static RwLock<FastMap<String, Param>>
Expand description

Accessor for the global paramtab (Src/params.c:515). Mirrors C’s paramtab->... dereference by handing back the inner RwLock; callers .read() for lookups and .write() for mutation, operating on the HashMap<String, Param> directly.