vkdb
A time series database engine in C++.
Loading...
Searching...
No Matches
SameNoCVRefQuals Concept Reference

Concept for types that are the same after removing cv- and ref-qualifiers. More...

#include <concepts.h>

Concept definition

template<typename T, typename U>
concept SameNoCVRefQuals =
std::is_same_v<std::remove_cvref_t<T>, std::remove_cvref_t<U>>
Concept for types that are the same after removing cv- and ref-qualifiers.
Definition concepts.h:14

Detailed Description

Concept for types that are the same after removing cv- and ref-qualifiers.

Template Parameters
TFirst type.
USecond type.

Definition at line 14 of file concepts.h.