Type Alias PropertyPtrMap

pub type PropertyPtrMap = SkipMap<Token, Arc<PropertyPtr>>;
Expand description

Concurrent map for property pointer storage indexed by metadata token.

Uses a lock-free skip list for high-performance concurrent access to property pointer entries. The map supports efficient lookup, insertion, and iteration operations across multiple threads.

Aliased Typeยง

pub struct PropertyPtrMap { /* private fields */ }