Report a bug
If you spot a problem with this page, click here to create a Bugzilla issue.
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 a local clone.

core.stdcpp.array

D header file for interaction with C++ std::array.
License:
Distributed under the Boost Software License 1.0. (See accompanying file LICENSE)
Authors:
Manu Evans
struct array(T, size_t N);
D language counterpart to C++ std::array.
C++ reference:
alias size_type = size_t;
alias difference_type = ptrdiff_t;
alias value_type = T;
alias pointer = T*;
alias const_pointer = const(T)*;
this(T[N] args...);
Variadic constructor
void fill()(auto ref const(T) value);
const @safe size_type size();
alias length = size;
alias opDollar = length;
const @safe size_type max_size();
const @safe bool empty();
inout ref @safe inout(T) front();
inout ref @safe inout(T) back();
inout @safe inout(T)* data();
inout ref @safe inout(T)[N] as_array();
inout ref @safe inout(T) at(size_type i);