Skip to main content

luaur_common/methods/
small_vector_size.rs

1use crate::records::small_vector::SmallVector;
2
3impl<T, const N: usize> SmallVector<T, N> {
4    // Intentionally left empty:
5    // SmallVector::size is already implemented on the SmallVector record type.
6}