55#include "vtkTypeListMacros.h"
73template <
typename T,
typename U>
85template <
bool Exp,
typename T,
typename F>
93template <
typename From,
typename To>
101template <
typename TList,
typename T>
109template <
typename TList,
typename T>
116template <
typename TList,
typename T>
124template <
typename TList>
132template <
typename TList,
typename Bad,
typename Good>
140template <
typename TList,
typename Bad,
typename Good>
149template <
typename TList,
typename T>
158template <
typename TList>
165template <
typename TList,
typename T>
170#include "vtkTypeList.txx"
175template <
typename... Ts>
176using Create =
typename vtkTypeList::detail::CreateImpl<Ts...>::type;
typename vtkTypeList::detail::CreateImpl< Ts... >::type Create
Appends type T to TypeList TList and stores the result in Result.
Sets member Result to true if a conversion exists to convert type From to type To.
Sort the TypeList from most-derived to least-derived type, storing the sorted TypeList in Result.
Erase all type T from TypeList TList, storing the new list in Result.
Erase the first element of type T from TypeList TList, storing the new list in Result.
Sets the enum value Result to the index of type T in the TypeList TList.
Given a type T and a TypeList TList, store the most derived type of T in TList as Result.
Used to terminate a TypeList.
Replace all instances of Bad with Good in the TypeList TList, storing the new list in Result.
Replace the first instance of Bad with Good in the TypeList TList, storing the new list in Result.
Sets Result to T if Exp is true, or F if Exp is false.
Generic implementation of TypeList.
Remove all duplicate types from TypeList TList, storing the new list in Result.