MCPcopy Create free account
hub / github.com/Kitware/VTK / Save

Function Save

Wrapping/PythonCore/vtkPythonArgs.h:613–623  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

611 */
612 template <class T>
613 static void Save(const T* a, T* b, size_t n)
614 {
615 if (b && a)
616 {
617 memcpy(b, a, n * sizeof(T));
618 }
619 else
620 {
621 assert(n == 0);
622 }
623 }
624
625 /**
626 * Check if an array has changed.

Callers 11

saveMethod · 0.50
saveMethod · 0.50
saveMethod · 0.50
SaveMethod · 0.50
TestTemplatedArrayFunction · 0.50
SaveMethod · 0.50
SaveMethod · 0.50
SaveMethod · 0.50
SaveMethod · 0.50
SaveMethod · 0.50

Calls 1

assertFunction · 0.50

Tested by 1

TestTemplatedArrayFunction · 0.40