英語版
このページの英語版を見る

core.stdcpp.utility

Microsoft C++と相互作用するためのDヘッダファイル
License:
Distributed under the Boost Software License 1.0. (See accompanying file LICENSE)
Authors:
Manu Evans
struct pair(T1, T2);
C++のstd::pairに相当するD言語。
C++リファレンス:
alias first_type = T1;
alias second_type = T2;
T1 first;
T2 second;