3#ifndef TETL_CONCEPTS_SAME_AS_HPP
4#define TETL_CONCEPTS_SAME_AS_HPP
11template <
typename T,
typename U>
18template <
typename T,
typename U>
19concept same_as = detail::same_helper<T, U> and detail::same_helper<U, T>;
The concept same_as<T, U> is satisfied if and only if T and U denote the same type....
Definition same_as.hpp:19
Definition adjacent_find.hpp:8
constexpr bool is_same_v
Definition is_same.hpp:11