We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a2eb260 commit 00bebf8Copy full SHA for 00bebf8
vortex-vector/src/binaryview/vector_mut.rs
@@ -16,12 +16,11 @@ use crate::{VectorMutOps, VectorOps};
16
17
// Default capacity for new string data buffers of 2MiB.
18
const BUFFER_CAPACITY: usize = 2 * 1024 * 1024;
19
-/// Mutable variable-length binary vector.
20
-#[derive(Clone, Debug)]
21
22
/// A mutable vector of binary view data.
23
///
24
/// The immutable equivalent of this type is [`BinaryViewVector`].
+#[derive(Clone, Debug)]
25
pub struct BinaryViewVectorMut<T: BinaryViewType> {
26
/// Views into the binary data.
27
views: BufferMut<BinaryView>,
0 commit comments