We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 585d306 commit bbafbe6Copy full SHA for bbafbe6
include/pmacc/meta/Pair.hpp
@@ -0,0 +1,11 @@
1
+#pragma once
2
+
3
+namespace pmacc::meta
4
+{
5
+ template<typename First, typename Second>
6
+ struct Pair
7
+ {
8
+ using first = First;
9
+ using second = Second;
10
+ };
11
+} // namespace pmacc::meta
0 commit comments