| 524 | |
| 525 | template <typename TYPE> |
| 526 | enable_if_number<TYPE, Status> Visit(const TYPE& type) { |
| 527 | result = TensorCountNonZero<TYPE>(tensor_); |
| 528 | return Status::OK(); |
| 529 | } |
| 530 | |
| 531 | Status Visit(const DataType& type) { |
| 532 | ARROW_CHECK(!is_tensor_supported(type.id())); |
nothing calls this directly
no test coverage detected