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 160 161 162 163 164 165 166 167 168 169 170 171
use crate::ImpVec;
use orx_split_vec::{SplitVec, SplitVecGrowth};
use std::cell::RefCell;
// into ImpVec
impl<T, G> From<SplitVec<T, G>> for ImpVec<T, G>
where
G: SplitVecGrowth<T>,
{
/// Converts a `SplitVec` into a `ImpVec` by
/// moving the split-vector into the imp-vector,
/// without copying the data.
///
/// # Examples
///
/// ```
/// use orx_imp_vec::ImpVec;
/// use orx_split_vec::SplitVec;
///
/// let vec = vec!['a', 'b', 'c'];
/// let vec_capacity = vec.capacity();
///
/// let mut split_vec = SplitVec::default(); // required mut to push
/// split_vec.push(0);
/// split_vec.push(1);
///
/// let imp_vec: ImpVec<_> = split_vec.into(); // can push w/o mut ref
/// assert_eq!(imp_vec, &[0, 1]);
///
/// imp_vec.push(2);
///assert_eq!(imp_vec, &[0, 1, 2]);
/// ```
fn from(value: SplitVec<T, G>) -> Self {
Self {
split_vec: RefCell::new(value),
}
}
}
impl<T, G> From<Vec<T>> for ImpVec<T, G>
where
G: SplitVecGrowth<T>,
SplitVec<T, G>: From<Vec<T>>,
{
/// Converts a `Vec` into an `ImpVec` by first moving the vector
/// into the underlying split vector as the first fragment
/// without copying the data, and then converting the `SplitVec`
/// into `ImpVec`.
///
/// # Examples
///
/// ```
/// use orx_imp_vec::ImpVec;
///
/// let vec = vec!['a', 'b', 'c'];
/// let vec_capacity = vec.capacity();
///
/// let split_vec: ImpVec<_> = 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 {
split_vec: RefCell::new(value.into()),
}
}
}
// from ImpVec
impl<T, G> From<ImpVec<T, G>> for SplitVec<T, G>
where
G: SplitVecGrowth<T>,
{
/// Converts an `ImpVec` into a `SplitVec` by simply
/// moving out the split vector from the imp-vector
/// without copying the data.
///
/// Growth strategy is preserved.
///
/// # Examples
///
/// ```
/// use orx_imp_vec::ImpVec;
/// use orx_split_vec::{SplitVec, LinearGrowth};
///
/// let imp_vec = ImpVec::with_linear_growth(10);
/// imp_vec.push(0);
/// imp_vec.push(1);
///
/// let mut split_vec: SplitVec<_, LinearGrowth> = imp_vec.into();
/// assert_eq!(split_vec, &[0, 1]);
///
/// split_vec.push(2);
/// assert_eq!(split_vec, &[0, 1, 2]);
/// ```
fn from(value: ImpVec<T, G>) -> Self {
value.split_vec.into_inner()
}
}
impl<T, G> From<ImpVec<T, G>> for Vec<T>
where
G: SplitVecGrowth<T>,
{
/// Converts the `ImpVec` into a standard `std::vec::Vec` with a contagious memory layout.
///
/// # Examples
///
/// ```
/// use orx_imp_vec::ImpVec;
///
/// let imp_vec = ImpVec::with_linear_growth(4);
/// imp_vec.extend_from_slice(&['a', 'b', 'c']);
///
/// assert_eq!(1, imp_vec.fragments().len());
///
/// let vec: Vec<_> = imp_vec.into();
/// assert_eq!(vec, &['a', 'b', 'c']);
///
/// let imp_vec = ImpVec::with_linear_growth(4);
/// for i in 0..10 {
/// imp_vec.push(i);
/// }
/// assert_eq!(&[0, 1, 2, 3], imp_vec.fragments()[0].as_slice());
/// assert_eq!(&[4, 5, 6, 7], imp_vec.fragments()[1].as_slice());
/// assert_eq!(&[8, 9], imp_vec.fragments()[2].as_slice());
///
/// let vec: Vec<_> = imp_vec.into();
/// assert_eq!(&[0, 1, 2, 3, 4, 5, 6, 7, 8, 9], vec.as_slice());
/// ```
fn from(value: ImpVec<T, G>) -> Self {
let split_vec: SplitVec<_, G> = value.into();
split_vec.into()
}
}
impl<T, G> ImpVec<T, G>
where
G: SplitVecGrowth<T>,
{
/// Converts the `ImpVec` into a standard `Vec` with a contagious memory layout.
///
/// # Examples
///
/// ```
/// use orx_imp_vec::ImpVec;
///
/// let imp_vec = ImpVec::with_linear_growth(4);
/// imp_vec.extend_from_slice(&['a', 'b', 'c']);
///
/// assert_eq!(1, imp_vec.fragments().len());
///
/// let vec = imp_vec.to_vec();
/// assert_eq!(vec, &['a', 'b', 'c']);
///
/// let imp_vec = ImpVec::with_linear_growth(4);
/// for i in 0..10 {
/// imp_vec.push(i);
/// }
/// assert_eq!(&[0, 1, 2, 3], imp_vec.fragments()[0].as_slice());
/// assert_eq!(&[4, 5, 6, 7], imp_vec.fragments()[1].as_slice());
/// assert_eq!(&[8, 9], imp_vec.fragments()[2].as_slice());
///
/// let vec = imp_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()
}
}