blaze::Any< TypeTrait, Ts > Struct Template Reference

Compile time type check.This type trait determines whether the given type trait TypeTrait evaluates to true for at least one of the given types Ts. If the expression. More...

#include <Any.h>

Inherits blaze::IntegralConstant< T, N >.

Detailed Description

template<template< typename > class TypeTrait, typename... Ts>
struct blaze::Any< TypeTrait, Ts >

Compile time type check.

This type trait determines whether the given type trait TypeTrait evaluates to true for at least one of the given types Ts. If the expression.

Or< TypeTrait<Ts>... >::value

evaluates to true, the value member constant is set to true, the nested type definition Type is TrueType, and the class derives from TrueType. Otherwise value is set to false, Type is FalseType, and the class derives from FalseType. Examples:


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