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

Method row

src/api/cpp/array.cpp:430–432  ·  view source on GitHub ↗

NOLINTNEXTLINE(readability-const-return-type)

Source from the content-addressed store, hash-verified

428
429// NOLINTNEXTLINE(readability-const-return-type)
430const array::array_proxy array::row(int index) const {
431 return this->operator()(index, span, span, span);
432}
433
434array::array_proxy array::row(int index) {
435 return const_cast<const array *>(this)->row(index);

Callers 7

TYPED_TESTFunction · 0.80
TESTFunction · 0.80
deathTestFunction · 0.80
TYPED_TESTFunction · 0.80
mainFunction · 0.80
collide_streamFunction · 0.80
mainFunction · 0.80

Calls 1

operator()Method · 0.95

Tested by 1

deathTestFunction · 0.64