DoxigAlpha

deinit

Function parameters

Parameters

#
self:*Slice

A MultiArrayList stores a list of a struct or tagged union type.

Functions

#
MultiArrayList
A MultiArrayList stores a list of a struct or tagged union type.

Source

Implementation

#
pub fn deinit(self: *Slice, gpa: Allocator) void {
    var other = self.toMultiArrayList();
    other.deinit(gpa);
    self.* = undefined;
}