Type Alias ParamMap
pub type ParamMap = SkipMap<Token, ParamRc>;Expand description
Thread-safe map holding the mapping of crate::metadata::token::Token to parsed Param entries.
This concurrent skip list provides efficient O(log n) access to Param entries by their metadata token. Used for resolving parameter information during method processing.
Aliased Typeยง
pub struct ParamMap { /* private fields */ }