|
8 | 8 | //! ## Creating a [`StructVector`] and [`StructVectorMut`] |
9 | 9 | //! |
10 | 10 | //! ``` |
11 | | -//! use crate::bool::BoolVectorMut; |
12 | | -//! use crate::null::NullVectorMut; |
13 | | -//! use crate::primitive::PVectorMut; |
14 | | -//! use crate::struct_::StructVectorMut; |
15 | | -//! use crate::{VectorMut, VectorMutOps}; |
| 11 | +//! use vortex_vector::bool::BoolVectorMut; |
| 12 | +//! use vortex_vector::null::NullVectorMut; |
| 13 | +//! use vortex_vector::primitive::PVectorMut; |
| 14 | +//! use vortex_vector::struct_::StructVectorMut; |
| 15 | +//! use vortex_vector::{VectorMut, VectorMutOps}; |
16 | 16 | //! use vortex_mask::MaskMut; |
17 | 17 | //! |
18 | 18 | //! // Create a struct with three fields: nulls, booleans, and integers. |
|
32 | 32 | //! [`unsplit()`]: crate::VectorMutOps::unsplit |
33 | 33 | //! |
34 | 34 | //! ``` |
35 | | -//! use crate::bool::BoolVectorMut; |
36 | | -//! use crate::null::NullVectorMut; |
37 | | -//! use crate::primitive::PVectorMut; |
38 | | -//! use crate::struct_::StructVectorMut; |
39 | | -//! use crate::{VectorMut, VectorMutOps}; |
| 35 | +//! use vortex_vector::bool::BoolVectorMut; |
| 36 | +//! use vortex_vector::null::NullVectorMut; |
| 37 | +//! use vortex_vector::primitive::PVectorMut; |
| 38 | +//! use vortex_vector::struct_::StructVectorMut; |
| 39 | +//! use vortex_vector::{VectorMut, VectorMutOps}; |
40 | 40 | //! use vortex_mask::MaskMut; |
41 | 41 | //! |
42 | 42 | //! let fields = Box::new([ |
|
60 | 60 | //! ## Accessing field values |
61 | 61 | //! |
62 | 62 | //! ``` |
63 | | -//! use crate::bool::BoolVectorMut; |
64 | | -//! use crate::null::NullVectorMut; |
65 | | -//! use crate::primitive::PVectorMut; |
66 | | -//! use crate::struct_::StructVectorMut; |
67 | | -//! use crate::{VectorMut, VectorMutOps}; |
| 63 | +//! use vortex_vector::bool::BoolVectorMut; |
| 64 | +//! use vortex_vector::null::NullVectorMut; |
| 65 | +//! use vortex_vector::primitive::PVectorMut; |
| 66 | +//! use vortex_vector::struct_::StructVectorMut; |
| 67 | +//! use vortex_vector::{VectorMut, VectorMutOps}; |
68 | 68 | //! use vortex_mask::MaskMut; |
69 | 69 | //! use vortex_dtype::PTypeDowncast; |
70 | 70 | //! |
|
0 commit comments