orx-split-vec 3.8.0

An efficient constant access time vector with dynamic capacity and pinned elements.
Documentation
1
2
3
4
5
6
7
8
9
10
11
use crate::Fragment;
use core::fmt::Debug;

impl<T> Debug for Fragment<T>
where
    T: Debug,
{
    fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
        self.data.fmt(f)
    }
}