| 3162 | } |
| 3163 | |
| 3164 | std::vector<CType> values(const std::vector<std::string>& strings) const { |
| 3165 | std::vector<CType> values; |
| 3166 | for (const auto& s : strings) { |
| 3167 | values.push_back(value(s)); |
| 3168 | } |
| 3169 | return values; |
| 3170 | } |
| 3171 | |
| 3172 | std::shared_ptr<DataType> type_instance() { return std::make_shared<ArrowType>(4, 2); } |
| 3173 | }; |
no test coverage detected