speed up interning #61

Merged
programmerjake merged 5 commits from programmerjake/fayalite:speed-up-interning into master 2026-02-03 01:58:52 +00:00
Showing only changes of commit 26b0dc3fd8 - Show all commits

View file

@ -598,7 +598,7 @@ struct InternerState<T: ?Sized + 'static + Send + Sync> {
hasher: DefaultBuildHasher,
}
pub struct Interner<T: ?Sized + 'static + Send + Sync> {
pub(crate) struct Interner<T: ?Sized + 'static + Send + Sync> {
state: Mutex<InternerState<T>>,
}