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

Function copy_n

ibtk/contrib/boost/boost/multi_array/algorithm.hpp:53–61  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

51
52template <class InputIter, class Size, class OutputIter>
53OutputIter copy_n(InputIter first, Size count,
54 OutputIter result) {
55 for ( ; count > 0; --count) {
56 *result = *first;
57 ++first;
58 ++result;
59 }
60 return result;
61}
62#else // !1
63
64template <class InputIter, class Size, class OutputIter>

Callers 4

test_no_out_of_boundsFunction · 0.85
multi_arrayMethod · 0.85
general_storage_orderMethod · 0.85
factorizeDenseMatrixMethod · 0.85

Calls 1

copy_n__Function · 0.85

Tested by 1

test_no_out_of_boundsFunction · 0.68