std.container.array

This module provides an Array type with deterministic memory usage not reliant on the GC, as an alternative to the built-in arrays.

This module is a submodule of std.container.

Public Imports

std.container.util
public import std.container.util;
Undocumented in source.

Members

Structs

Array
struct Array(T)

Array type with deterministic control of memory. The memory allocated for the array is reclaimed as soon as possible; there is no reliance on the garbage collector. Array uses malloc, realloc and free for managing its own memory.

Array
struct Array(T)

Array specialized for bool. Packs together values efficiently by allocating one bit per element.

Meta

License

Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at ).