Skip to content

Commit

Permalink
pair
Browse files Browse the repository at this point in the history
  • Loading branch information
bernhardmgruber committed Oct 15, 2021
1 parent 585d306 commit bbafbe6
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions include/pmacc/meta/Pair.hpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
#pragma once

namespace pmacc::meta
{
template<typename First, typename Second>
struct Pair
{
using first = First;
using second = Second;
};
} // namespace pmacc::meta

0 comments on commit bbafbe6

Please sign in to comment.