Inheritance diagram for is_instantiation< Class, T >:
Detailed Description
template<template< typename... > class Class, typename T>
struct is_instantiation< Class, T >
Check if T is an instantiation of the template Class. For example: is_instantiation<shared_ptr, T> is true if T == shared_ptr<U> where U can be anything.