The OpenD Programming Language

array

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

C++ reference:

Constructors

this
this(T[N] args)

Variadic constructor

Members

Aliases

const_pointer
alias const_pointer = const(T)*
difference_type
alias difference_type = ptrdiff_t
length
alias length = size
opDollar
alias opDollar = length
pointer
alias pointer = T*
size_type
alias size_type = size_t
value_type
alias value_type = T

Functions

back
inout(T) back()
empty
bool empty()
fill
void fill(const(T) value)
front
inout(T) front()
max_size
size_type max_size()
size
size_type size()

Meta