cxx/
vector.rs

1//! Less used details of `CxxVector`.
2//!
3//! `CxxVector` itself is exposed at the crate root.
4
5pub use crate::cxx_vector::{Iter, IterMut, VectorElement};
6#[doc(inline)]
7pub use crate::Vector;
8#[doc(no_inline)]
9pub use cxx::CxxVector;