| 256 | } // namespace |
| 257 | |
| 258 | void RegisterVectorNested(FunctionRegistry* registry) { |
| 259 | auto flatten = std::make_shared<VectorFunction>( |
| 260 | "list_flatten", Arity::Unary(), list_flatten_doc, GetDefaultListFlattenOptions()); |
| 261 | AddBaseListFlattenKernels(flatten.get()); |
| 262 | DCHECK_OK(registry->AddFunction(std::move(flatten))); |
| 263 | |
| 264 | DCHECK_OK(registry->AddFunction(std::make_shared<ListParentIndicesFunction>())); |
| 265 | } |
| 266 | |
| 267 | } // namespace internal |
| 268 | } // namespace compute |
no test coverage detected