core.stdcpp.array

D header file for interaction with C++ std::array.

struct array

Types 1

structarray(T, size_t N)

D language counterpart to C++ std::array.

C++ reference: https://en.cppreference.com/w/cpp/container/array

Methods
void fill()(auto ref const(T) value) extern(D)
size_type size() extern(D) pure nothrow @nogc const @safe
size_type max_size() extern(D) pure nothrow @nogc const @safe
bool empty() extern(D) pure nothrow @nogc const @safe
inout(T) front() ref extern(D) pure nothrow @nogc inout @safe
inout(T) back() ref extern(D) pure nothrow @nogc inout @safe
Constructors
this(T[N] args ...)Variadic constructor