| 254 | } |
| 255 | |
| 256 | std::vector<std::string> FileSystemDataset::files() const { |
| 257 | std::vector<std::string> files; |
| 258 | |
| 259 | for (const auto& fragment : fragments_) { |
| 260 | files.push_back(fragment->source().path()); |
| 261 | } |
| 262 | |
| 263 | return files; |
| 264 | } |
| 265 | |
| 266 | std::string FileSystemDataset::ToString() const { |
| 267 | std::string repr = "FileSystemDataset:"; |