//============================================================================= // // Copyright (c) Kitware, Inc. // All rights reserved. // See LICENSE.txt for details. // // This software is distributed WITHOUT ANY WARRANTY; without even // the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR // PURPOSE. See the above copyright notice for more information. // // Copyright 2015 Sandia Corporation. // Copyright 2015 UT-Battelle, LLC. // Copyright 2015 Los Alamos National Security. // // Under the terms of Contract DE-AC04-94AL85000 with Sandia Corporation, // the U.S. Government retains certain rights in this software. // Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National // Laboratory (LANL), the U.S. Government retains certain rights in // this software. // //============================================================================= #ifndef vtk_m_cont_ArrayHandleCast_h #define vtk_m_cont_ArrayHandleCast_h #include namespace vtkm { namespace cont { namespace internal { template struct Cast { VTKM_EXEC_CONT_EXPORT ToType operator()(const FromType &val) const { return static_cast(val); } }; } // namespace internal /// \brief Cast the values of an array to the specified type, on demand. /// /// ArrayHandleCast is a specialization of ArrayHandleTransform. Given an ArrayHandle /// and a type, it creates a new handle that returns the elements of the array cast /// to the specified type. /// template class ArrayHandleCast : public vtkm::cont::ArrayHandleTransform< T, ArrayHandleType, internal::Cast, internal::Cast > { public: VTKM_ARRAY_HANDLE_SUBCLASS( ArrayHandleCast, (ArrayHandleCast), (vtkm::cont::ArrayHandleTransform< T, ArrayHandleType, internal::Cast, internal::Cast >)); ArrayHandleCast(const ArrayHandleType &handle) : Superclass(handle) { } }; /// make_ArrayHandleCast is convenience function to generate an /// ArrayHandleCast. /// template VTKM_CONT_EXPORT ArrayHandleCast make_ArrayHandleCast(const HandleType &handle, const T&) { return ArrayHandleCast(handle); } } } // namespace vtkm::cont #endif // vtk_m_cont_ArrayHandleCast_h