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