dmd ~master (2023-11-01T14:17:50Z)
Dub
Repo
pair
core
stdcpp
utility
D language counterpart to C++ std::pair.
C++ reference:
extern (
C
++) @
nogc
struct
pair (
T1
T2
) {
alias
first_type
=
T1
;
alias
second_type
=
T2
;
T1
first
;
T2
second
;
}
Members
Aliases
first_type
alias
first_type
=
T1
second_type
alias
second_type
=
T2
Variables
first
T1
first
;
second
T2
second
;
Meta
Source
See Implementation
core
stdcpp
utility
structs
pair
D language counterpart to C++ std::pair.
C++ reference: