Movatterモバイル変換


[0]ホーム

URL:


D Logo
Menu
Search

Library Reference

version 2.112.0

overview

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 usinga local clone.

core.stdcpp.array

D header file for interaction with C++ std::array.
License:
Distributed under theBoost Software License 1.0. (See accompanying file LICENSE)
Authors:
Manu Evans

Sourcecore/stdcpp/array.d

structarray(T, size_t N);
D language counterpart to C++ std::array.
C++ reference:
aliassize_type = size_t;
aliasdifference_type = ptrdiff_t;
aliasvalue_type = T;
aliaspointer = T*;
aliasconst_pointer = const(T)*;
this(T[N]args...);
Variadic constructor
voidfill()(auto ref const(T)value);
@safe size_typesize() const;
aliaslength = size;
aliasopDollar = length;
@safe size_typemax_size() const;
@safe boolempty() const;
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_typei) inout;
Copyright © 1999-2026 by theD Language Foundation | Page generated byDdoc on Fri Feb 20 12:44:18 2026

[8]ページ先頭

©2009-2026 Movatter.jp