global: wip

This commit is contained in:
nym21
2025-06-06 12:23:45 +02:00
parent 1921c3d901
commit a11bf5523b
134 changed files with 333 additions and 708 deletions

View File

@@ -190,6 +190,14 @@ where
Self::Raw(i) => i.len(),
}
}
#[inline]
fn path(&self) -> &Path {
match self {
Self::Compressed(i) => i.path(),
Self::Raw(i) => i.path(),
}
}
}
impl<'a, I, T> IntoIterator for &'a StoredVec<I, T>