automem.array

Aliases for automem.vector

Members

Functions

array (from automem.vector)
auto vector(A allocator, R range) via public import automem.vector : array = vector;

Create a vector from an input range, inferring the type of the elements and the allocator.

Structs

Array (from automem.vector)
struct Vector(E, Allocator = typeof(theAllocator)) via public import automem.vector : Array = Vector;

A dynamic array with deterministic memory usage akin to C++'s std::vector or Rust's std::vec::Vec

Meta