Type Function ArrayList [src]

Alias for std.array_list.ArrayList

A contiguous, growable list of items in memory. This is a wrapper around an array of T values. Initialize with init. This struct internally stores a std.mem.Allocator for memory management. To manually specify an allocator with each function call see ArrayListUnmanaged.

Prototype

pub fn ArrayList(comptime T: type) type

Parameters

T: type

Source

pub fn ArrayList(comptime T: type) type { return ArrayListAligned(T, null); }