pub struct TwoSidedVec<T> { /* private fields */ }Expand description
A simple ‘two sided’ vector, that can grow both forwards and backwards.
The front and the back can be viewed as seperate and independent vectors,
with negative indexing accessing the back and positive indexing accessing the front.
This allows you to append to the back without modifying positive indexes.
Unless you actually need pushing to the back to appear to shift the front forward,
like VecDeque does, this negative index system will probably be better for your situation.
Internally this allows a much simpler and faster implementation, since there’s only a single pointer to the middle that grows up and down. Internally, we have to reallocate the buffer if we run out of capacity in either the negative or positive difes grow separately and Although bounds checks are slightly slower since they involve two comparisons, the access itself should be just as fast.
Implementations§
Source§impl<T> TwoSidedVec<T>
impl<T> TwoSidedVec<T>
pub fn new() -> Self
pub fn with_capacity(back: usize, front: usize) -> Self
Sourcepub fn split(&self) -> (&[T], &[T])
pub fn split(&self) -> (&[T], &[T])
Take seperate slices of the back and the front of the vector respectively.
Sourcepub fn split_mut(&mut self) -> (&mut [T], &mut [T])
pub fn split_mut(&mut self) -> (&mut [T], &mut [T])
Take seperate mutable slices of the back and front of the vector respectively.
pub fn push_front(&mut self, value: T)
pub fn pop_front(&mut self) -> Option<T>
pub fn pop_back(&mut self) -> Option<T>
Sourcepub fn push_back(&mut self, value: T)
pub fn push_back(&mut self, value: T)
Push the specified value into the front of this queue,
without modifying its end or touching the front of the queue.
This effectively preserves all positive indexes, which may or may not be useful for your situation.
pub fn reserve_back(&mut self, amount: usize)
pub fn reserve_front(&mut self, amount: usize)
pub fn capacity_back(&self) -> usize
pub fn capacity_front(&self) -> usize
Sourcepub fn len(&self) -> usize
pub fn len(&self) -> usize
Return the length of the entire vector, which is the sum of the lengths of the front and back parts.
The length isn’t where the vector ends,
since it could have elements in the back with negative indexes.
Use vec.start() and vec.end() if you want to know the start and end indexes.
The total length is exactly equivalent to vec.len_back() + vec.len_front()
pub fn is_empty(&self) -> bool
Sourcepub fn start(&self) -> isize
pub fn start(&self) -> isize
Give the (inclusive) start of the queue’s elements. which may be negative if the queue’s back isn’t empty
This is exactly equivelant to -vec.back().len().
Sourcepub fn end(&self) -> isize
pub fn end(&self) -> isize
Give the (exclusive) end of the queue’s elements, which may be less than the length if the queue’s back contains some elements.
This is exactly equivalent to vec.front().len()
Sourcepub fn range(&self) -> Range<isize>
pub fn range(&self) -> Range<isize>
Return the [start, end) range of the element indices,
equivalent to a tuple of (queue.start(), queue.end()).
Sourcepub fn iter_entire(&self) -> Iter<'_, T>
pub fn iter_entire(&self) -> Iter<'_, T>
Iterate over the entire vector, including both the back and front.
pub fn get<I: TwoSidedIndex<T>>(&self, index: I) -> Option<&I::Output>
pub fn get_mut<I: TwoSidedIndex<T>>( &mut self, index: I, ) -> Option<&mut I::Output>
Sourcepub unsafe fn get_unchecked<I: TwoSidedIndex<T>>(&self, index: I) -> &I::Output
pub unsafe fn get_unchecked<I: TwoSidedIndex<T>>(&self, index: I) -> &I::Output
Get a reference to value at the specified index
§Safety
Undefined behavior if the index is out of bounds
Sourcepub unsafe fn get_unchecked_mut<I: TwoSidedIndex<T>>(
&mut self,
index: I,
) -> &mut I::Output
pub unsafe fn get_unchecked_mut<I: TwoSidedIndex<T>>( &mut self, index: I, ) -> &mut I::Output
Get a mutable reference to value at the specified index
§Safety
Undefined behavior if the index is out of bounds
Sourcepub fn middle_ptr(&self) -> *mut T
pub fn middle_ptr(&self) -> *mut T
Give a raw pointer to the middle of the elements
pub fn end_ptr(&self) -> *mut T
pub fn split_at(&self, index: isize) -> (&[T], &[T])
pub fn clear(&mut self)
Sourcepub fn enumerate_back(&self) -> SignedEnumerate<Iter<'_, T>> ⓘ
pub fn enumerate_back(&self) -> SignedEnumerate<Iter<'_, T>> ⓘ
Enumerate the indices and values of the elements in the back of the vector.
The primary advantage over regular enumeration is that it gives proper negative indices since the elements are in the back.
Sourcepub fn enumerate_front(&self) -> SignedEnumerate<Iter<'_, T>> ⓘ
pub fn enumerate_front(&self) -> SignedEnumerate<Iter<'_, T>> ⓘ
Enumerate the indices and values of the elements in the front of the vector.
The only possible advantage over regular enumeration is that it
gives positive isize indices for consistency with enumeration over the back.
Sourcepub fn enumerate(&self) -> SignedEnumerate<Iter<'_, T>> ⓘ
pub fn enumerate(&self) -> SignedEnumerate<Iter<'_, T>> ⓘ
Enumerate the indices and values of each element in the front and back.
The primary advantage over regular enumeration is that it gives proper negative indices for elements that are in the back.
Sourcepub fn enumerate_mut(&mut self) -> SignedEnumerate<IterMut<'_, T>> ⓘ
pub fn enumerate_mut(&mut self) -> SignedEnumerate<IterMut<'_, T>> ⓘ
Mutably enumerate the indices and values of each element in the front and back.
The primary advantage over regular enumeration is that it gives proper negative indices for elements that are in the back.