MCPcopy Create free account
hub / github.com/IBAMR/IBAMR / copy_array

Method copy_array

ibtk/contrib/boost/boost/multi_array/copy_array.hpp:32–37  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

30public:
31 template <typename SourceIterator, typename DestIterator>
32 static void copy_array (SourceIterator first, SourceIterator last,
33 DestIterator result) {
34 while (first != last) {
35 copy_array(*first++,*result++);
36 }
37 }
38private:
39 // Array2 has to be passed by VALUE here because subarray
40 // pseudo-references are temporaries created by iterator::operator*()

Callers

nothing calls this directly

Calls 3

copy_arrayFunction · 0.85
beginMethod · 0.45
endMethod · 0.45

Tested by

no test coverage detected