195 #ifndef vtkArrayDispatch_h
196 #define vtkArrayDispatch_h
198 #include "vtkArrayDispatchArrayList.h"
208 typedef vtkTypeList::Create<double, float>
Reals;
214 vtkTypeList::Create<char, int, long,
long long, short,
signed char,
unsigned char,
unsigned int,
238 template <
typename ArrayList>
249 template <
typename ValueTypeList>
271 struct Dispatch2SameValueType;
283 template <
typename ArrayList1,
typename ArrayList2>
298 template <
typename ValueTypeList1,
typename ValueTypeList2>
312 template <
typename ArrayList1,
typename ArrayList2>
327 template <
typename ValueTypeList>
349 struct Dispatch3SameValueType;
362 template <
typename ArrayList1,
typename ArrayList2,
typename ArrayList3>
378 template <
typename ValueTypeList1,
typename ValueTypeList2,
typename ValueTypeList3>
392 template <
typename ArrayList1,
typename ArrayList2,
typename ArrayList3>
407 template <
typename ValueTypeList>
415 template <
typename ArrayList,
typename ValueList>
420 #include "vtkArrayDispatch.txx"
vtkTypeList::Append< Reals, Integrals >::Result AllTypes
A Typelist containing all standard VTK array ValueTypes.
vtkTypeList::Create< double, float > Reals
A TypeList containing all real ValueTypes.
vtkTypeList::Unique< vtkTypeList::Create< char, int, long, long long, short, signed char, unsigned char, unsigned int, unsigned long, unsigned long long, unsigned short, vtkIdType > >::Result Integrals
A Typelist containing all integral ValueTypes.
typename vtkTypeList::detail::CreateImpl< Ts... >::type Create
Dispatch two arrays, restricting the valid code paths to use only array types specified in the ArrayL...
Dispatch two arrays with the restriction that the type of the first array is in the ArrayList1 TypeLi...
Dispatch two arrays, restricting the valid code paths to use only array types found in application-wi...
Dispatch two arrays, restricting the valid code paths to use ValueType-filtered versions of the appli...
Dispatch three arrays, restricting the valid code paths to use only array types specified in the Arra...
Dispatch three arrays with the restriction that the type of the first array is in the ArrayList1 Type...
Dispatch three arrays, restricting the valid code paths to use only array types found in application-...
Dispatch three arrays, restricting the valid code paths to use ValueType-filtered versions of the app...
Dispatch a single array against all array types mentioned in the ArrayList template parameter.
Dispatch a single array against all array types in the application-wide vtkArrayDispatch::Arrays list...
Filter the ArrayList to contain only arrays with ArrayType::ValueType that exist in ValueList.
Appends type T to TypeList TList and stores the result in Result.
Remove all duplicate types from TypeList TList, storing the new list in Result.