dqt ~master (2021-12-05T11:53:08Z)
Dub
Repo
QPair
qt
core
pair
Undocumented in source but is binding to C++. You might be able to learn more by searching the web for its name.
extern (
C
++)
struct
QPair (
T1
T2
) {
alias
first_type
=
T1
;
alias
second_type
=
T2
;
this
(const(T1) t1, const(T2) t2);
T1
first
;
T2
second
;
}
Constructors
this
this
(const(T1) t1, const(T2) t2)
Undocumented in source.
Members
Aliases
first_type
alias
first_type
=
T1
Undocumented in source.
second_type
alias
second_type
=
T2
Undocumented in source.
Variables
first
T1
first
;
Undocumented in source.
second
T2
second
;
Undocumented in source.
Meta
Source
See Implementation
qt
core
pair
functions
qMakePair
structs
QPair