MCPcopy Create free account
hub / github.com/Kitware/VTK / operator()

Method operator()

Common/Core/vtkAbstractArray.cxx:71–76  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

69{
70 template <typename InArrayT>
71 void operator()(InArrayT* inArray, std::ostream& outStream)
72 {
73 using T = vtk::GetAPIType<InArrayT>;
74 const auto inRange = vtk::DataArrayValueRange(inArray);
75 std::copy(inRange.begin(), inRange.end(), std::ostream_iterator<T>(outStream, " "));
76 }
77};
78}
79

Callers

nothing calls this directly

Calls 4

DataArrayValueRangeFunction · 0.85
copyFunction · 0.50
beginMethod · 0.45
endMethod · 0.45

Tested by

no test coverage detected