12//! Drop a single cached entry. Useful for hot-reload during dev when the
3//! bundler rewrites a chunk.
45use std::{path::Path, sync::Arc};
67use crate::Cache::AssetMemoryMap::{Entry, Map};
89pub fn Fn(Path:&Path) -> Option<Arc<Entry::Struct>> { Map::Fn().remove(Path).map(|(_, V)| V) }