cpp_redis  4.0.0
cpp_redis is a C++11 Asynchronous Multi-Platform Lightweight Redis Client, with support for synchronous operations and pipelining.
Static Public Attributes | List of all members
cpp_redis::helpers::is_type_present< T1, T2, Ts > Struct Template Reference

#include <variadic_template.hpp>

Static Public Attributes

static constexpr bool value
 

Detailed Description

template<typename T1, typename T2, typename... Ts>
struct cpp_redis::helpers::is_type_present< T1, T2, Ts >

type traits to check if type is present in variadic list

Member Data Documentation

◆ value

template<typename T1 , typename T2 , typename... Ts>
constexpr bool cpp_redis::helpers::is_type_present< T1, T2, Ts >::value
static
Initial value:
= std::is_same<T1, T2>::value
? true
: is_type_present<T1, Ts...>::value

true if T1 is present in remaining types of variadic list false otherwise


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