| 1176 | } |
| 1177 | |
| 1178 | Result<Datum> TakeTAT(const std::shared_ptr<Schema>& schm, |
| 1179 | const std::vector<std::string>& values, const std::string& indices, |
| 1180 | const std::shared_ptr<DataType>& index_type = int8()) { |
| 1181 | return Take(Datum{TableFromJSON(schm, values)}, |
| 1182 | Datum{ArrayFromJSON(index_type, indices)}); |
| 1183 | } |
| 1184 | |
| 1185 | Result<Datum> TakeTCT(const std::shared_ptr<Schema>& schm, |
| 1186 | const std::vector<std::string>& values, |
no test coverage detected