1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159
use crate::{Doubling, Exponential, Growth, Linear, SplitVec};
use orx_pinned_vec::{NotSelfRefVecItem, PinnedVec};
// into SplitVec
impl<T> From<Vec<T>> for SplitVec<T, Linear> {
/// Converts a `Vec` into a `SplitVec` by
/// moving the vector into the split vector as the first fragment,
/// without copying the data.
///
/// # Examples
///
/// ```
/// use orx_split_vec::prelude::*;
///
/// let vec = vec!['a', 'b', 'c'];
/// let vec_capacity = vec.capacity();
///
/// let split_vec: SplitVec<_, Linear> = vec.into();
///
/// assert_eq!(split_vec, &['a', 'b', 'c']);
/// assert_eq!(1, split_vec.fragments().len());
/// assert_eq!(vec_capacity, split_vec.fragments()[0].capacity());
/// ```
fn from(value: Vec<T>) -> Self {
Self {
fragments: vec![value.into()],
growth: Linear,
}
}
}
impl<T> From<Vec<T>> for SplitVec<T, Doubling> {
/// Converts a `Vec` into a `SplitVec` by
/// moving the vector into the split vector as the first fragment,
/// without copying the data.
///
/// # Examples
///
/// ```
/// use orx_split_vec::prelude::*;
///
/// let vec = vec!['a', 'b', 'c'];
/// let vec_capacity = vec.capacity();
///
/// let split_vec: SplitVec<_, Doubling> = vec.into();
///
/// assert_eq!(split_vec, &['a', 'b', 'c']);
/// assert_eq!(1, split_vec.fragments().len());
/// assert_eq!(vec_capacity, split_vec.fragments()[0].capacity());
/// ```
fn from(value: Vec<T>) -> Self {
Self {
fragments: vec![value.into()],
growth: Doubling,
}
}
}
impl<T> From<Vec<T>> for SplitVec<T, Exponential> {
/// Converts a `Vec` into a `SplitVec` by
/// moving the vector into the split vector as the first fragment,
/// without copying the data.
///
/// # Examples
///
/// ```
/// use orx_split_vec::prelude::*;
///
/// let vec = vec!['a', 'b', 'c'];
/// let vec_capacity = vec.capacity();
///
/// let split_vec: SplitVec<_, Exponential> = vec.into();
///
/// assert_eq!(split_vec, &['a', 'b', 'c']);
/// assert_eq!(1, split_vec.fragments().len());
/// assert_eq!(vec_capacity, split_vec.fragments()[0].capacity());
/// ```
fn from(value: Vec<T>) -> Self {
Self {
fragments: vec![value.into()],
growth: Exponential::default(),
}
}
}
// from SplitVec
impl<T, G> From<SplitVec<T, G>> for Vec<T>
where
G: Growth,
T: NotSelfRefVecItem,
{
/// Converts the `SplitVec` into a standard `Vec` with a contagious memory layout.
///
/// # Examples
///
/// ```
/// use orx_split_vec::prelude::*;
///
/// let mut split_vec = SplitVec::with_linear_growth(4);
/// split_vec.extend_from_slice(&['a', 'b', 'c']);
///
/// assert_eq!(1, split_vec.fragments().len());
///
/// let vec: Vec<_> = split_vec.into();
/// assert_eq!(vec, &['a', 'b', 'c']);
///
/// let mut split_vec = SplitVec::with_linear_growth(4);
/// for i in 0..10 {
/// split_vec.push(i);
/// }
/// assert_eq!(&[0, 1, 2, 3], split_vec.fragments()[0].as_slice());
/// assert_eq!(&[4, 5, 6, 7], split_vec.fragments()[1].as_slice());
/// assert_eq!(&[8, 9], split_vec.fragments()[2].as_slice());
///
/// let vec: Vec<_> = split_vec.into();
/// assert_eq!(&[0, 1, 2, 3, 4, 5, 6, 7, 8, 9], vec.as_slice());
/// ```
fn from(mut value: SplitVec<T, G>) -> Self {
let mut vec = vec![];
vec.reserve(value.len());
for f in &mut value.fragments {
vec.append(&mut f.data);
}
vec
}
}
impl<T, G> SplitVec<T, G>
where
G: Growth,
T: NotSelfRefVecItem,
{
/// Converts the `SplitVec` into a standard `Vec` with a contagious memory layout.
///
/// # Examples
///
/// ```
/// use orx_split_vec::prelude::*;
///
/// let mut split_vec = SplitVec::with_linear_growth(4);
/// split_vec.extend_from_slice(&['a', 'b', 'c']);
///
/// assert_eq!(1, split_vec.fragments().len());
///
/// let vec = split_vec.to_vec();
/// assert_eq!(vec, &['a', 'b', 'c']);
///
/// let mut split_vec = SplitVec::with_linear_growth(4);
/// for i in 0..10 {
/// split_vec.push(i);
/// }
/// assert_eq!(&[0, 1, 2, 3], split_vec.fragments()[0].as_slice());
/// assert_eq!(&[4, 5, 6, 7], split_vec.fragments()[1].as_slice());
/// assert_eq!(&[8, 9], split_vec.fragments()[2].as_slice());
///
/// let vec = split_vec.to_vec();
/// assert_eq!(&[0, 1, 2, 3, 4, 5, 6, 7, 8, 9], vec.as_slice());
/// ```
pub fn to_vec(self) -> Vec<T> {
self.into()
}
}