MCPcopy Create free account
hub / github.com/arrayfire/arrayfire / operator~

Method operator~

src/api/cpp/array.cpp:990–995  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

988}
989
990array array::operator~() const {
991 af_array lhs = this->get();
992 af_array out = nullptr;
993 AF_THROW(af_bitnot(&out, lhs));
994 return array(out);
995}
996
997void array::eval() const { AF_THROW(af_eval(get())); }
998

Callers

nothing calls this directly

Calls 3

getMethod · 0.95
af_bitnotFunction · 0.85
arrayClass · 0.50

Tested by

no test coverage detected