Merge branch 'main' into release-0.3.0

This commit is contained in:
2026-07-17 11:29:41 +02:00
8 changed files with 440 additions and 31 deletions
+2 -2
View File
@@ -13,7 +13,7 @@ impl<V: Copy, T: Clone> VertexMap<V, T> {
}
}
// Reads beyond capacity() are valid and return the default value.
// Reads beyond 'capacity' are valid and return the default value.
pub fn capacity(&self) -> usize {
self.inner.capacity()
}
@@ -48,7 +48,7 @@ impl<E: Copy, T: Clone> EdgeMap<E, T> {
}
}
// Reads beyond capacity() are valid and return the default value.
// Reads beyond 'capacity' are valid and return the default value.
pub fn capacity(&self) -> usize {
self.inner.capacity()
}