| 41 | } // namespace |
| 42 | |
| 43 | const char* JsonTypeName(const ::arrow::rapidjson::Value& v) { |
| 44 | return kJsonTypeNames[v.GetType()]; |
| 45 | } |
| 46 | |
| 47 | Result<int64_t> ComputeShapeProduct(std::span<const int64_t> shape) { |
| 48 | int64_t product = 1; |
no test coverage detected