MCPcopy Create free account
hub / github.com/apache/arrow / kernels

Method kernels

cpp/src/arrow/compute/function.h:264–270  ·  view source on GitHub ↗

\brief Return pointers to current-available kernels for inspection

Source from the content-addressed store, hash-verified

262 public:
263 /// \brief Return pointers to current-available kernels for inspection
264 std::vector<const KernelType*> kernels() const {
265 std::vector<const KernelType*> result;
266 for (const auto& kernel : kernels_) {
267 result.push_back(&kernel);
268 }
269 return result;
270 }
271
272 int num_kernels() const override { return static_cast<int>(kernels_.size()); }
273

Callers 6

CallTabularFunctionFunction · 0.80
CheckAddDispatchFunction · 0.80
TESTFunction · 0.80
DispatchExactImplFunction · 0.80
MakeFlippedCompareFunction · 0.80

Calls 1

push_backMethod · 0.80

Tested by 2

CheckAddDispatchFunction · 0.64
TESTFunction · 0.64