MCPcopy Create free account
hub / github.com/arrayfire/arrayfire / rows

Method rows

src/api/cpp/array.cpp:457–460  ·  view source on GitHub ↗

NOLINTNEXTLINE(readability-const-return-type)

Source from the content-addressed store, hash-verified

455
456// NOLINTNEXTLINE(readability-const-return-type)
457const array::array_proxy array::rows(int first, int last) const {
458 seq idx(first, last, 1);
459 return this->operator()(idx, span, span, span);
460}
461
462array::array_proxy array::rows(int first, int last) {
463 return const_cast<const array *>(this)->rows(first, last);

Callers 6

TYPED_TESTFunction · 0.80
TESTFunction · 0.80
TYPED_TESTFunction · 0.80
TESTFunction · 0.80
reproduceFunction · 0.80
collide_streamFunction · 0.80

Calls 1

operator()Method · 0.95

Tested by

no test coverage detected