25template <
typename First, 
typename Second>
 
   27    std::pair<First, Second>,
 
   28    std::enable_if_t<has_static_type_v<First> && has_static_type_v<Second>>>
 
 
Utility that maps C++ types to types that can be understood by MPI.
Constructs a type that is serialized as a sequence of sizeof(T) bytes using MPI_BYTE....
Definition mpi_datatype.hpp:84
The type trait that maps a C++ type T to a type trait that can be used to construct an MPI_Datatype.
Definition mpi_datatype.hpp:204