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

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

#include <concepts.h>

Concept definition

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

Detailed Description

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

Template Parameters
TType to construct from.
UType to construct to.

Definition at line 89 of file concepts.h.