Type Alias MethodSemanticsMap

pub type MethodSemanticsMap = SkipMap<Token, MethodSemanticsRc>;
Expand description

Thread-safe map holding the mapping of crate::metadata::token::Token to parsed MethodSemantics entries.

This concurrent skip list provides efficient O(log n) access to method semantics entries by their metadata token, supporting multiple concurrent readers and writers.

Aliased Typeยง

pub struct MethodSemanticsMap { /* private fields */ }