diff --git a/src/vec/avec.rs b/src/vec/avec.rs index 8ab2d99..c7e0bc2 100644 --- a/src/vec/avec.rs +++ b/src/vec/avec.rs @@ -20,6 +20,7 @@ pub struct AVec { impl Drop for AVec { fn drop(&mut self) { self.clear() } } impl AVec { + /// Retrieve the [`fat::Free`] (+ [`fat::Alloc`] + [`fat::Realloc`] + ...) associated with this [`AVec`]. #[inline(always)] pub fn allocator(&self) -> &A { ABox::allocator(&self.data) } /// Get a pointer to the underlying buffer of `T`s without going through a reference to `T` or `[T]` (which could narrow provenance.)