| 3122 | } |
| 3123 | |
| 3124 | std::vector<CType> values(const std::vector<std::string>& strings) const { |
| 3125 | std::vector<CType> values; |
| 3126 | for (const auto& s : strings) { |
| 3127 | values.push_back(value(s)); |
| 3128 | } |
| 3129 | return values; |
| 3130 | } |
| 3131 | |
| 3132 | std::shared_ptr<DataType> type_instance() { return std::make_shared<ArrowType>(4, 2); } |
| 3133 | }; |
no test coverage detected