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