View source code
Display the source code in std/container/array.d from which this page was generated on
github.
Improve this page
Quickly fork, edit online, and submit a pull request for this page.
Requires a signed-in GitHub account. This works well for small changes.
If you'd like to make larger changes you may want to consider using
local clone.
Page wiki
View or edit the community-maintained wiki page associated with this page.
Module std.container.array
This module provides an
type with deterministic memory usage not
reliant on the GC, as an alternative to the built-in arrays.
Array
This module is a submodule of std.container.
Structs
Name | Description |
---|---|
Array
|
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. uses malloc and free
for managing its own memory.
|
Array
|
Array specialized for bool . Packs together values efficiently by
allocating one bit per element.
|
Authors
Steven Schveighoffer, Andrei Alexandrescu
License
Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at ).