TRIQS/mpi 1.3.0
C++ interface to MPI
Loading...
Searching...
No Matches
mpi::contiguous_sized_range Concept Reference

#include <mpi/utils.hpp>

Detailed Description

A concept that checks if a range type is contiguous and sized.

Template Parameters
RRange type.

Definition at line 81 of file utils.hpp.

Concept definition

template<typename R>
concept mpi::contiguous_sized_range = std::ranges::contiguous_range<R> && std::ranges::sized_range<R>
A concept that checks if a range type is contiguous and sized.
Definition utils.hpp:81