HiPipe  0.7.0
C++17 data pipeline with Python bindings.
hipipe::utility::is_specialization< typename, typename > Struct Template Reference

Detect whether the given type is a specialization of the given container template. More...

#include <hipipe/core/utility/ndim.hpp>

Inherits false_type.

Detailed Description

template<typename, template< typename... > typename>
struct hipipe::utility::is_specialization< typename, typename >

Detect whether the given type is a specialization of the given container template.

Example:

static_assert(is_specialization<std::vector<int>, std::vector>);
static_assert(!is_specialization<std::vector<int>, std::deque>);

Definition at line 77 of file ndim.hpp.


The documentation for this struct was generated from the following file: