vtk-m/vtkm/testing
Robert Maynard cc71e8ec6e vtkm::ListForEach can handle passing any number of extra arguments
Rather than requiring all the arguments to be placed as member variables to
the functor you can now pass extra arguments that will be added to the functor
call signature.

So for example:

  vtkm::ForEach(functor, vtkm::TypeListTagCommon(), double{42.0}, int{42});

will be converted into:

  functor(vtkm::Int32, double, int)
  functor(vtkm::Int64, double, int)
  functor(vtkm::Float32, double, int)
  functor(vtkm::Float64, double, int)
  ...
2017-11-08 08:24:47 -05:00
..
CMakeLists.txt Update copyright for Sandia 2017-09-20 15:33:44 -06:00
OptionParser.h Enable highest level of warnings(W4) under MSVC 2017-09-22 13:04:28 -04:00
Testing.h Clean up warnings introduced by recent benchmark modifications. 2017-10-20 16:23:36 -04:00
TestingMath.h Update copyright for Sandia 2017-09-20 15:33:44 -06:00
UnitTestBinaryOperators.cxx Update copyright for Sandia 2017-09-20 15:33:44 -06:00
UnitTestBinaryPredicates.cxx Update copyright for Sandia 2017-09-20 15:33:44 -06:00
UnitTestBounds.cxx Update copyright for Sandia 2017-09-20 15:33:44 -06:00
UnitTestCellShape.cxx Update copyright for Sandia 2017-09-20 15:33:44 -06:00
UnitTestExceptions.cxx Update copyright for Sandia 2017-09-20 15:33:44 -06:00
UnitTestHash.cxx Update copyright for Sandia 2017-09-20 15:33:44 -06:00
UnitTestListTag.cxx vtkm::ListForEach can handle passing any number of extra arguments 2017-11-08 08:24:47 -05:00
UnitTestMath.cxx Update copyright for Sandia 2017-09-20 15:33:44 -06:00
UnitTestMatrix.cxx Work around more compiler optimization bugs with UnitTestMatrix 2017-10-26 13:25:58 -04:00
UnitTestNewtonsMethod.cxx Update Newton's Method to return solution status 2017-10-10 14:01:41 -04:00
UnitTestNoAssert.cxx Update copyright for Sandia 2017-09-20 15:33:44 -06:00
UnitTestPair.cxx Ensure that Pair and Vec are trivial classes. 2017-10-18 14:58:35 -04:00
UnitTestRange.cxx Update copyright for Sandia 2017-09-20 15:33:44 -06:00
UnitTestTesting.cxx Update copyright for Sandia 2017-09-20 15:33:44 -06:00
UnitTestTransform3D.cxx Update copyright for Sandia 2017-09-20 15:33:44 -06:00
UnitTestTypeListTag.cxx Update copyright for Sandia 2017-09-20 15:33:44 -06:00
UnitTestTypes.cxx Ensure that Pair and Vec are trivial classes. 2017-10-18 14:58:35 -04:00
UnitTestTypeTraits.cxx Update copyright for Sandia 2017-09-20 15:33:44 -06:00
UnitTestUnaryPredicates.cxx Update copyright for Sandia 2017-09-20 15:33:44 -06:00
UnitTestVecAxisAlignedPointCoordinates.cxx Update copyright for Sandia 2017-09-20 15:33:44 -06:00
UnitTestVecFromPortal.cxx Update copyright for Sandia 2017-09-20 15:33:44 -06:00
UnitTestVecFromPortalPermute.cxx Update copyright for Sandia 2017-09-20 15:33:44 -06:00
UnitTestVectorAnalysis.cxx Update copyright for Sandia 2017-09-20 15:33:44 -06:00
UnitTestVecTraits.cxx Update copyright for Sandia 2017-09-20 15:33:44 -06:00
UnitTestVecVariable.cxx Update copyright for Sandia 2017-09-20 15:33:44 -06:00
VecTraitsTests.h Update copyright for Sandia 2017-09-20 15:33:44 -06:00