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