1
2
3
4
5
6
7
8
9
10
11
12
use crate::ImpVec;
use orx_split_vec::SplitVec;
use std::cell::RefCell;

impl<T> Default for ImpVec<T> {
    /// Creates an empty imp-vector with the default `FragmentGrowth` strategy.
    fn default() -> Self {
        Self {
            split_vec: RefCell::new(SplitVec::default()),
        }
    }
}