hunt.collection.Array

Undocumented in source.

Public Imports

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

Members

Functions

enforceCalloc
void* enforceCalloc(size_t nmemb, size_t size)
Undocumented in source. Be warned that the author may not have intended to support it.
enforceMalloc
void* enforceMalloc(size_t size)
Undocumented in source. Be warned that the author may not have intended to support it.
enforceRealloc
void* enforceRealloc(void* ptr, size_t size)
Undocumented in source. Be warned that the author may not have intended to support it.

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