LLVM  8.0.1
Static Public Attributes | List of all members
llvm::is_one_of< T, U, Ts... > Struct Template Reference

#include "llvm/ADT/STLExtras.h"

Collaboration diagram for llvm::is_one_of< T, U, Ts... >:
Collaboration graph
[legend]

Static Public Attributes

static const bool value
 

Detailed Description

template<typename T, typename U, typename... Ts>
struct llvm::is_one_of< T, U, Ts... >

Definition at line 1021 of file STLExtras.h.

Member Data Documentation

◆ value

template<typename T , typename U , typename... Ts>
const bool llvm::is_one_of< T, U, Ts... >::value
static
Initial value:
=
std::is_same<T, U>::value || is_one_of<T, Ts...>::value

Definition at line 1022 of file STLExtras.h.


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