factory implementation
| 598 | |
| 599 | // factory implementation |
| 600 | Status Visit(const BooleanType&) { |
| 601 | impl_ = [](const Array& array, int64_t index, std::ostream* os) { |
| 602 | *os << (checked_cast<const BooleanArray&>(array).Value(index) ? "true" : "false"); |
| 603 | }; |
| 604 | return Status::OK(); |
| 605 | } |
| 606 | |
| 607 | Status Visit(const HalfFloatType&) { |
| 608 | impl_ = [](const Array& array, int64_t index, std::ostream* os) { |
nothing calls this directly
no test coverage detected