| David Tolnay | c2c1e3b | 2021-03-25 00:53:32 -0400 | [diff] [blame] | 1 | //! Less used details of `CxxVector` are exposed in this module. `CxxVector` |
| 2 | //! itself is exposed at the crate root. | ||||
| 3 | |||||
| 4 | pub use crate::cxx_vector::{Iter, IterMut}; | ||||
| David Tolnay | c2c1e3b | 2021-03-25 00:53:32 -0400 | [diff] [blame] | 5 | #[doc(inline)] |
| 6 | pub use crate::Vector; | ||||
| David Tolnay | 676bb46 | 2021-03-25 01:05:01 -0400 | [diff] [blame] | 7 | #[doc(no_inline)] |
| 8 | pub use cxx::CxxVector; | ||||