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

Concept for a type that is convertible to another and has no cv- or ref-qualifiers. More...

#include <concepts.h>

Concept definition

template<typename T, typename U>
concept ConvertibleToNoCVRefQuals = std::convertible_to<T, U> && HasNoCVRefQuals<T>
Concept for a type that is convertible to another and has no cv- or ref-qualifiers.
Definition concepts.h:68
Concept for types that have no cv- or ref-qualifiers.
Definition concepts.h:23

Detailed Description

Concept for a type that is convertible to another and has no cv- or ref-qualifiers.

Template Parameters
TType to convert.
UType to convert to.

Definition at line 67 of file concepts.h.