Skip to main content

luaur_common/methods/
small_vector_begin_small_vector.rs

1use crate::records::small_vector::SmallVector;
2
3impl<T, const N: usize> SmallVector<T, N> {
4    pub fn begin_mut(&mut self) -> *mut T {
5        self.begin() as *mut T
6    }
7}