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
Source
core/stdcpp/array.d
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);

© 1999–2021 The D Language Foundation
Licensed under the Boost License 1.0.
https://dlang.org/phobos/core_stdcpp_array.html