\brief A convenience for returning the types from the batch.
| 250 | |
| 251 | /// \brief A convenience for returning the types from the batch. |
| 252 | std::vector<TypeHolder> GetTypes() const { |
| 253 | std::vector<TypeHolder> result; |
| 254 | for (const auto& value : this->values) { |
| 255 | result.emplace_back(value.type()); |
| 256 | } |
| 257 | return result; |
| 258 | } |
| 259 | |
| 260 | std::string ToString() const; |
| 261 | }; |