Chromium Embedded Framework (CEF) 148.0.4+ga59e378+chromium-148.0.7778.40
base::is_instantiation Concept Reference

True if and only if the type T is an instantiation of the template C with some set of type arguments. More...

#include "include/base/cef_is_instantiation.h"

Concept definition

template<typename T, template< typename... > class C>
True if and only if the type T is an instantiation of the template C with some set of type arguments.
Definition cef_is_instantiation.h:67
constexpr bool is_instantiation_v
Definition cef_is_instantiation.h:54
Definition cef_atomic_flag.h:50

Detailed Description

True if and only if the type T is an instantiation of the template C with some set of type arguments.

Note that there is no allowance for reference or const/volatile qualifiers; if these are a concern you probably want to feed through std::decay_t<T>.