Adaptyst
A comprehensive and architecture-agnostic performance analysis tool
Loading...
Searching...
No Matches
adaptyst::is_pair Concept Reference

#include <output.hpp>

Concept definition

template<typename T>
concept adaptyst::is_pair = requires {
typename T::first_type;
typename T::second_type;
} && std::is_same_v<T, std::pair<typename T::first_type,
typename T::second_type> >
Definition output.hpp:284