deinit
Function parameters
Parameters
- self:*ArrayListReverse
Functions in this namespace
Functions
- writer
- Warning: This writer writes backwards.
- clearAndFree
- Invalidates all element pointers.
- toOwnedSlice
- The caller owns the returned memory.
Source
Implementation
pub fn deinit(self: *ArrayListReverse) void {
self.allocator.free(self.allocatedSlice());
}