Type Definition rhai::FnResolutionCache

source · []
pub type FnResolutionCache = BTreeMap<u64, Option<FnResolutionCacheEntry>>;
Expand description

(internals) A function resolution cache. Exported under the internals feature only.

FnResolutionCacheEntry is Boxed in order to pack as many entries inside a single B-Tree level as possible.