Constructs an array with ArrayFromJSON against which arguments are matched
| 414 | |
| 415 | /// Constructs an array with ArrayFromJSON against which arguments are matched |
| 416 | inline DataEqMatcher DataEqArray(const std::shared_ptr<DataType>& type, |
| 417 | std::string_view json) { |
| 418 | return DataEq(arrow::ArrayFromJSON(type, json)); |
| 419 | } |
| 420 | |
| 421 | /// Constructs an array from a vector of optionals against which arguments are matched |
| 422 | template <typename T, typename ArrayType = typename TypeTraits<T>::ArrayType, |
nothing calls this directly
no test coverage detected