We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fe3dd4d commit 8709bc4Copy full SHA for 8709bc4
src/lib.rs
@@ -89,6 +89,10 @@ pub use indexmap::{
89
pub use indexset::{FnvIndexSet, IndexSet, Iter as IndexSetIter};
90
pub use linear_map::LinearMap;
91
pub use string::String;
92
+
93
+// Workaround https://github.com/rust-lang/rust/issues/119015. This is required so that the methods on `VecView` and `Vec` are properly documented.
94
+// cfg(doc) prevents `VecInner` being part of the public API.
95
+// doc(hidden) prevents the `pub use vec::VecInner` from being visible in the documentation.
96
#[cfg(doc)]
97
#[doc(hidden)]
98
pub use vec::VecInner as _;
0 commit comments