Skip to main content

cxx/
vector.rs

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